magick-icons 0.1.242 → 0.1.244

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.mts CHANGED
@@ -14904,6 +14904,24 @@ interface MagickoSecurityUserProps extends React.SVGProps<SVGSVGElement> {
14904
14904
  */
14905
14905
  declare const MagickoSecurityUser: React.ForwardRefExoticComponent<Omit<MagickoSecurityUserProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
14906
14906
 
14907
+ /**
14908
+ * Props for the MagickoSend icon component
14909
+ * @property {number | string} [size] - Size of the icon (default: 24)
14910
+ */
14911
+ interface MagickoSendProps extends React.SVGProps<SVGSVGElement> {
14912
+ size?: number | string;
14913
+ }
14914
+ /**
14915
+ * MagickoSend icon component
14916
+ * @example
14917
+ * ```tsx
14918
+ * import { MagickoSend } from 'magick-icons';
14919
+ *
14920
+ * <MagickoSend size={24} className="text-blue-500" strokeWidth={2} />
14921
+ * ```
14922
+ */
14923
+ declare const MagickoSend: React.ForwardRefExoticComponent<Omit<MagickoSendProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
14924
+
14907
14925
  /**
14908
14926
  * Props for the MagickoSend1 icon component
14909
14927
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -15030,6 +15048,1068 @@ interface MagickoSendSquare02Props extends React.SVGProps<SVGSVGElement> {
15030
15048
  */
15031
15049
  declare const MagickoSendSquare02: React.ForwardRefExoticComponent<Omit<MagickoSendSquare02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15032
15050
 
15051
+ /**
15052
+ * Props for the MagickoSetting2 icon component
15053
+ * @property {number | string} [size] - Size of the icon (default: 24)
15054
+ */
15055
+ interface MagickoSetting2Props extends React.SVGProps<SVGSVGElement> {
15056
+ size?: number | string;
15057
+ }
15058
+ /**
15059
+ * MagickoSetting2 icon component
15060
+ * @example
15061
+ * ```tsx
15062
+ * import { MagickoSetting2 } from 'magick-icons';
15063
+ *
15064
+ * <MagickoSetting2 size={24} className="text-blue-500" strokeWidth={2} />
15065
+ * ```
15066
+ */
15067
+ declare const MagickoSetting2: React.ForwardRefExoticComponent<Omit<MagickoSetting2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15068
+
15069
+ /**
15070
+ * Props for the MagickoSetting3 icon component
15071
+ * @property {number | string} [size] - Size of the icon (default: 24)
15072
+ */
15073
+ interface MagickoSetting3Props extends React.SVGProps<SVGSVGElement> {
15074
+ size?: number | string;
15075
+ }
15076
+ /**
15077
+ * MagickoSetting3 icon component
15078
+ * @example
15079
+ * ```tsx
15080
+ * import { MagickoSetting3 } from 'magick-icons';
15081
+ *
15082
+ * <MagickoSetting3 size={24} className="text-blue-500" strokeWidth={2} />
15083
+ * ```
15084
+ */
15085
+ declare const MagickoSetting3: React.ForwardRefExoticComponent<Omit<MagickoSetting3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15086
+
15087
+ /**
15088
+ * Props for the MagickoSetting4 icon component
15089
+ * @property {number | string} [size] - Size of the icon (default: 24)
15090
+ */
15091
+ interface MagickoSetting4Props extends React.SVGProps<SVGSVGElement> {
15092
+ size?: number | string;
15093
+ }
15094
+ /**
15095
+ * MagickoSetting4 icon component
15096
+ * @example
15097
+ * ```tsx
15098
+ * import { MagickoSetting4 } from 'magick-icons';
15099
+ *
15100
+ * <MagickoSetting4 size={24} className="text-blue-500" strokeWidth={2} />
15101
+ * ```
15102
+ */
15103
+ declare const MagickoSetting4: React.ForwardRefExoticComponent<Omit<MagickoSetting4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15104
+
15105
+ /**
15106
+ * Props for the MagickoSetting5 icon component
15107
+ * @property {number | string} [size] - Size of the icon (default: 24)
15108
+ */
15109
+ interface MagickoSetting5Props extends React.SVGProps<SVGSVGElement> {
15110
+ size?: number | string;
15111
+ }
15112
+ /**
15113
+ * MagickoSetting5 icon component
15114
+ * @example
15115
+ * ```tsx
15116
+ * import { MagickoSetting5 } from 'magick-icons';
15117
+ *
15118
+ * <MagickoSetting5 size={24} className="text-blue-500" strokeWidth={2} />
15119
+ * ```
15120
+ */
15121
+ declare const MagickoSetting5: React.ForwardRefExoticComponent<Omit<MagickoSetting5Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15122
+
15123
+ /**
15124
+ * Props for the MagickoSettings icon component
15125
+ * @property {number | string} [size] - Size of the icon (default: 24)
15126
+ */
15127
+ interface MagickoSettingsProps extends React.SVGProps<SVGSVGElement> {
15128
+ size?: number | string;
15129
+ }
15130
+ /**
15131
+ * MagickoSettings icon component
15132
+ * @example
15133
+ * ```tsx
15134
+ * import { MagickoSettings } from 'magick-icons';
15135
+ *
15136
+ * <MagickoSettings size={24} className="text-blue-500" strokeWidth={2} />
15137
+ * ```
15138
+ */
15139
+ declare const MagickoSettings: React.ForwardRefExoticComponent<Omit<MagickoSettingsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15140
+
15141
+ /**
15142
+ * Props for the MagickoSettings1 icon component
15143
+ * @property {number | string} [size] - Size of the icon (default: 24)
15144
+ */
15145
+ interface MagickoSettings1Props extends React.SVGProps<SVGSVGElement> {
15146
+ size?: number | string;
15147
+ }
15148
+ /**
15149
+ * MagickoSettings1 icon component
15150
+ * @example
15151
+ * ```tsx
15152
+ * import { MagickoSettings1 } from 'magick-icons';
15153
+ *
15154
+ * <MagickoSettings1 size={24} className="text-blue-500" strokeWidth={2} />
15155
+ * ```
15156
+ */
15157
+ declare const MagickoSettings1: React.ForwardRefExoticComponent<Omit<MagickoSettings1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15158
+
15159
+ /**
15160
+ * Props for the MagickoShare icon component
15161
+ * @property {number | string} [size] - Size of the icon (default: 24)
15162
+ */
15163
+ interface MagickoShareProps extends React.SVGProps<SVGSVGElement> {
15164
+ size?: number | string;
15165
+ }
15166
+ /**
15167
+ * MagickoShare icon component
15168
+ * @example
15169
+ * ```tsx
15170
+ * import { MagickoShare } from 'magick-icons';
15171
+ *
15172
+ * <MagickoShare size={24} className="text-blue-500" strokeWidth={2} />
15173
+ * ```
15174
+ */
15175
+ declare const MagickoShare: React.ForwardRefExoticComponent<Omit<MagickoShareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15176
+
15177
+ /**
15178
+ * Props for the MagickoShiningHeart icon component
15179
+ * @property {number | string} [size] - Size of the icon (default: 24)
15180
+ */
15181
+ interface MagickoShiningHeartProps extends React.SVGProps<SVGSVGElement> {
15182
+ size?: number | string;
15183
+ }
15184
+ /**
15185
+ * MagickoShiningHeart icon component
15186
+ * @example
15187
+ * ```tsx
15188
+ * import { MagickoShiningHeart } from 'magick-icons';
15189
+ *
15190
+ * <MagickoShiningHeart size={24} className="text-blue-500" strokeWidth={2} />
15191
+ * ```
15192
+ */
15193
+ declare const MagickoShiningHeart: React.ForwardRefExoticComponent<Omit<MagickoShiningHeartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15194
+
15195
+ /**
15196
+ * Props for the MagickoShip icon component
15197
+ * @property {number | string} [size] - Size of the icon (default: 24)
15198
+ */
15199
+ interface MagickoShipProps extends React.SVGProps<SVGSVGElement> {
15200
+ size?: number | string;
15201
+ }
15202
+ /**
15203
+ * MagickoShip icon component
15204
+ * @example
15205
+ * ```tsx
15206
+ * import { MagickoShip } from 'magick-icons';
15207
+ *
15208
+ * <MagickoShip size={24} className="text-blue-500" strokeWidth={2} />
15209
+ * ```
15210
+ */
15211
+ declare const MagickoShip: React.ForwardRefExoticComponent<Omit<MagickoShipProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15212
+
15213
+ /**
15214
+ * Props for the MagickoShop icon component
15215
+ * @property {number | string} [size] - Size of the icon (default: 24)
15216
+ */
15217
+ interface MagickoShopProps extends React.SVGProps<SVGSVGElement> {
15218
+ size?: number | string;
15219
+ }
15220
+ /**
15221
+ * MagickoShop icon component
15222
+ * @example
15223
+ * ```tsx
15224
+ * import { MagickoShop } from 'magick-icons';
15225
+ *
15226
+ * <MagickoShop size={24} className="text-blue-500" strokeWidth={2} />
15227
+ * ```
15228
+ */
15229
+ declare const MagickoShop: React.ForwardRefExoticComponent<Omit<MagickoShopProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15230
+
15231
+ /**
15232
+ * Props for the MagickoShop1 icon component
15233
+ * @property {number | string} [size] - Size of the icon (default: 24)
15234
+ */
15235
+ interface MagickoShop1Props extends React.SVGProps<SVGSVGElement> {
15236
+ size?: number | string;
15237
+ }
15238
+ /**
15239
+ * MagickoShop1 icon component
15240
+ * @example
15241
+ * ```tsx
15242
+ * import { MagickoShop1 } from 'magick-icons';
15243
+ *
15244
+ * <MagickoShop1 size={24} className="text-blue-500" strokeWidth={2} />
15245
+ * ```
15246
+ */
15247
+ declare const MagickoShop1: React.ForwardRefExoticComponent<Omit<MagickoShop1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15248
+
15249
+ /**
15250
+ * Props for the MagickoShoppingBag icon component
15251
+ * @property {number | string} [size] - Size of the icon (default: 24)
15252
+ */
15253
+ interface MagickoShoppingBagProps extends React.SVGProps<SVGSVGElement> {
15254
+ size?: number | string;
15255
+ }
15256
+ /**
15257
+ * MagickoShoppingBag icon component
15258
+ * @example
15259
+ * ```tsx
15260
+ * import { MagickoShoppingBag } from 'magick-icons';
15261
+ *
15262
+ * <MagickoShoppingBag size={24} className="text-blue-500" strokeWidth={2} />
15263
+ * ```
15264
+ */
15265
+ declare const MagickoShoppingBag: React.ForwardRefExoticComponent<Omit<MagickoShoppingBagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15266
+
15267
+ /**
15268
+ * Props for the MagickoShoppingCart icon component
15269
+ * @property {number | string} [size] - Size of the icon (default: 24)
15270
+ */
15271
+ interface MagickoShoppingCartProps extends React.SVGProps<SVGSVGElement> {
15272
+ size?: number | string;
15273
+ }
15274
+ /**
15275
+ * MagickoShoppingCart icon component
15276
+ * @example
15277
+ * ```tsx
15278
+ * import { MagickoShoppingCart } from 'magick-icons';
15279
+ *
15280
+ * <MagickoShoppingCart size={24} className="text-blue-500" strokeWidth={2} />
15281
+ * ```
15282
+ */
15283
+ declare const MagickoShoppingCart: React.ForwardRefExoticComponent<Omit<MagickoShoppingCartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15284
+
15285
+ /**
15286
+ * Props for the MagickoShuffle icon component
15287
+ * @property {number | string} [size] - Size of the icon (default: 24)
15288
+ */
15289
+ interface MagickoShuffleProps extends React.SVGProps<SVGSVGElement> {
15290
+ size?: number | string;
15291
+ }
15292
+ /**
15293
+ * MagickoShuffle icon component
15294
+ * @example
15295
+ * ```tsx
15296
+ * import { MagickoShuffle } from 'magick-icons';
15297
+ *
15298
+ * <MagickoShuffle size={24} className="text-blue-500" strokeWidth={2} />
15299
+ * ```
15300
+ */
15301
+ declare const MagickoShuffle: React.ForwardRefExoticComponent<Omit<MagickoShuffleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15302
+
15303
+ /**
15304
+ * Props for the MagickoSidebarBottom icon component
15305
+ * @property {number | string} [size] - Size of the icon (default: 24)
15306
+ */
15307
+ interface MagickoSidebarBottomProps extends React.SVGProps<SVGSVGElement> {
15308
+ size?: number | string;
15309
+ }
15310
+ /**
15311
+ * MagickoSidebarBottom icon component
15312
+ * @example
15313
+ * ```tsx
15314
+ * import { MagickoSidebarBottom } from 'magick-icons';
15315
+ *
15316
+ * <MagickoSidebarBottom size={24} className="text-blue-500" strokeWidth={2} />
15317
+ * ```
15318
+ */
15319
+ declare const MagickoSidebarBottom: React.ForwardRefExoticComponent<Omit<MagickoSidebarBottomProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15320
+
15321
+ /**
15322
+ * Props for the MagickoSidebarLeft icon component
15323
+ * @property {number | string} [size] - Size of the icon (default: 24)
15324
+ */
15325
+ interface MagickoSidebarLeftProps extends React.SVGProps<SVGSVGElement> {
15326
+ size?: number | string;
15327
+ }
15328
+ /**
15329
+ * MagickoSidebarLeft icon component
15330
+ * @example
15331
+ * ```tsx
15332
+ * import { MagickoSidebarLeft } from 'magick-icons';
15333
+ *
15334
+ * <MagickoSidebarLeft size={24} className="text-blue-500" strokeWidth={2} />
15335
+ * ```
15336
+ */
15337
+ declare const MagickoSidebarLeft: React.ForwardRefExoticComponent<Omit<MagickoSidebarLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15338
+
15339
+ /**
15340
+ * Props for the MagickoSidebarRight icon component
15341
+ * @property {number | string} [size] - Size of the icon (default: 24)
15342
+ */
15343
+ interface MagickoSidebarRightProps extends React.SVGProps<SVGSVGElement> {
15344
+ size?: number | string;
15345
+ }
15346
+ /**
15347
+ * MagickoSidebarRight icon component
15348
+ * @example
15349
+ * ```tsx
15350
+ * import { MagickoSidebarRight } from 'magick-icons';
15351
+ *
15352
+ * <MagickoSidebarRight size={24} className="text-blue-500" strokeWidth={2} />
15353
+ * ```
15354
+ */
15355
+ declare const MagickoSidebarRight: React.ForwardRefExoticComponent<Omit<MagickoSidebarRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15356
+
15357
+ /**
15358
+ * Props for the MagickoSidebarTop icon component
15359
+ * @property {number | string} [size] - Size of the icon (default: 24)
15360
+ */
15361
+ interface MagickoSidebarTopProps extends React.SVGProps<SVGSVGElement> {
15362
+ size?: number | string;
15363
+ }
15364
+ /**
15365
+ * MagickoSidebarTop icon component
15366
+ * @example
15367
+ * ```tsx
15368
+ * import { MagickoSidebarTop } from 'magick-icons';
15369
+ *
15370
+ * <MagickoSidebarTop size={24} className="text-blue-500" strokeWidth={2} />
15371
+ * ```
15372
+ */
15373
+ declare const MagickoSidebarTop: React.ForwardRefExoticComponent<Omit<MagickoSidebarTopProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15374
+
15375
+ /**
15376
+ * Props for the MagickoSignedCloud icon component
15377
+ * @property {number | string} [size] - Size of the icon (default: 24)
15378
+ */
15379
+ interface MagickoSignedCloudProps extends React.SVGProps<SVGSVGElement> {
15380
+ size?: number | string;
15381
+ }
15382
+ /**
15383
+ * MagickoSignedCloud icon component
15384
+ * @example
15385
+ * ```tsx
15386
+ * import { MagickoSignedCloud } from 'magick-icons';
15387
+ *
15388
+ * <MagickoSignedCloud size={24} className="text-blue-500" strokeWidth={2} />
15389
+ * ```
15390
+ */
15391
+ declare const MagickoSignedCloud: React.ForwardRefExoticComponent<Omit<MagickoSignedCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15392
+
15393
+ /**
15394
+ * Props for the MagickoSimcard icon component
15395
+ * @property {number | string} [size] - Size of the icon (default: 24)
15396
+ */
15397
+ interface MagickoSimcardProps extends React.SVGProps<SVGSVGElement> {
15398
+ size?: number | string;
15399
+ }
15400
+ /**
15401
+ * MagickoSimcard icon component
15402
+ * @example
15403
+ * ```tsx
15404
+ * import { MagickoSimcard } from 'magick-icons';
15405
+ *
15406
+ * <MagickoSimcard size={24} className="text-blue-500" strokeWidth={2} />
15407
+ * ```
15408
+ */
15409
+ declare const MagickoSimcard: React.ForwardRefExoticComponent<Omit<MagickoSimcardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15410
+
15411
+ /**
15412
+ * Props for the MagickoSimcard1 icon component
15413
+ * @property {number | string} [size] - Size of the icon (default: 24)
15414
+ */
15415
+ interface MagickoSimcard1Props extends React.SVGProps<SVGSVGElement> {
15416
+ size?: number | string;
15417
+ }
15418
+ /**
15419
+ * MagickoSimcard1 icon component
15420
+ * @example
15421
+ * ```tsx
15422
+ * import { MagickoSimcard1 } from 'magick-icons';
15423
+ *
15424
+ * <MagickoSimcard1 size={24} className="text-blue-500" strokeWidth={2} />
15425
+ * ```
15426
+ */
15427
+ declare const MagickoSimcard1: React.ForwardRefExoticComponent<Omit<MagickoSimcard1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15428
+
15429
+ /**
15430
+ * Props for the MagickoSimcard2 icon component
15431
+ * @property {number | string} [size] - Size of the icon (default: 24)
15432
+ */
15433
+ interface MagickoSimcard2Props extends React.SVGProps<SVGSVGElement> {
15434
+ size?: number | string;
15435
+ }
15436
+ /**
15437
+ * MagickoSimcard2 icon component
15438
+ * @example
15439
+ * ```tsx
15440
+ * import { MagickoSimcard2 } from 'magick-icons';
15441
+ *
15442
+ * <MagickoSimcard2 size={24} className="text-blue-500" strokeWidth={2} />
15443
+ * ```
15444
+ */
15445
+ declare const MagickoSimcard2: React.ForwardRefExoticComponent<Omit<MagickoSimcard2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15446
+
15447
+ /**
15448
+ * Props for the MagickoSlash icon component
15449
+ * @property {number | string} [size] - Size of the icon (default: 24)
15450
+ */
15451
+ interface MagickoSlashProps extends React.SVGProps<SVGSVGElement> {
15452
+ size?: number | string;
15453
+ }
15454
+ /**
15455
+ * MagickoSlash icon component
15456
+ * @example
15457
+ * ```tsx
15458
+ * import { MagickoSlash } from 'magick-icons';
15459
+ *
15460
+ * <MagickoSlash size={24} className="text-blue-500" strokeWidth={2} />
15461
+ * ```
15462
+ */
15463
+ declare const MagickoSlash: React.ForwardRefExoticComponent<Omit<MagickoSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15464
+
15465
+ /**
15466
+ * Props for the MagickoSleepZzz icon component
15467
+ * @property {number | string} [size] - Size of the icon (default: 24)
15468
+ */
15469
+ interface MagickoSleepZzzProps extends React.SVGProps<SVGSVGElement> {
15470
+ size?: number | string;
15471
+ }
15472
+ /**
15473
+ * MagickoSleepZzz icon component
15474
+ * @example
15475
+ * ```tsx
15476
+ * import { MagickoSleepZzz } from 'magick-icons';
15477
+ *
15478
+ * <MagickoSleepZzz size={24} className="text-blue-500" strokeWidth={2} />
15479
+ * ```
15480
+ */
15481
+ declare const MagickoSleepZzz: React.ForwardRefExoticComponent<Omit<MagickoSleepZzzProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15482
+
15483
+ /**
15484
+ * Props for the MagickoSmallcaps icon component
15485
+ * @property {number | string} [size] - Size of the icon (default: 24)
15486
+ */
15487
+ interface MagickoSmallcapsProps extends React.SVGProps<SVGSVGElement> {
15488
+ size?: number | string;
15489
+ }
15490
+ /**
15491
+ * MagickoSmallcaps icon component
15492
+ * @example
15493
+ * ```tsx
15494
+ * import { MagickoSmallcaps } from 'magick-icons';
15495
+ *
15496
+ * <MagickoSmallcaps size={24} className="text-blue-500" strokeWidth={2} />
15497
+ * ```
15498
+ */
15499
+ declare const MagickoSmallcaps: React.ForwardRefExoticComponent<Omit<MagickoSmallcapsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15500
+
15501
+ /**
15502
+ * Props for the MagickoSmartBag icon component
15503
+ * @property {number | string} [size] - Size of the icon (default: 24)
15504
+ */
15505
+ interface MagickoSmartBagProps extends React.SVGProps<SVGSVGElement> {
15506
+ size?: number | string;
15507
+ }
15508
+ /**
15509
+ * MagickoSmartBag icon component
15510
+ * @example
15511
+ * ```tsx
15512
+ * import { MagickoSmartBag } from 'magick-icons';
15513
+ *
15514
+ * <MagickoSmartBag size={24} className="text-blue-500" strokeWidth={2} />
15515
+ * ```
15516
+ */
15517
+ declare const MagickoSmartBag: React.ForwardRefExoticComponent<Omit<MagickoSmartBagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15518
+
15519
+ /**
15520
+ * Props for the MagickoSmartCar icon component
15521
+ * @property {number | string} [size] - Size of the icon (default: 24)
15522
+ */
15523
+ interface MagickoSmartCarProps extends React.SVGProps<SVGSVGElement> {
15524
+ size?: number | string;
15525
+ }
15526
+ /**
15527
+ * MagickoSmartCar icon component
15528
+ * @example
15529
+ * ```tsx
15530
+ * import { MagickoSmartCar } from 'magick-icons';
15531
+ *
15532
+ * <MagickoSmartCar size={24} className="text-blue-500" strokeWidth={2} />
15533
+ * ```
15534
+ */
15535
+ declare const MagickoSmartCar: React.ForwardRefExoticComponent<Omit<MagickoSmartCarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15536
+
15537
+ /**
15538
+ * Props for the MagickoSmartCursor icon component
15539
+ * @property {number | string} [size] - Size of the icon (default: 24)
15540
+ */
15541
+ interface MagickoSmartCursorProps extends React.SVGProps<SVGSVGElement> {
15542
+ size?: number | string;
15543
+ }
15544
+ /**
15545
+ * MagickoSmartCursor icon component
15546
+ * @example
15547
+ * ```tsx
15548
+ * import { MagickoSmartCursor } from 'magick-icons';
15549
+ *
15550
+ * <MagickoSmartCursor size={24} className="text-blue-500" strokeWidth={2} />
15551
+ * ```
15552
+ */
15553
+ declare const MagickoSmartCursor: React.ForwardRefExoticComponent<Omit<MagickoSmartCursorProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15554
+
15555
+ /**
15556
+ * Props for the MagickoSmartLockAi icon component
15557
+ * @property {number | string} [size] - Size of the icon (default: 24)
15558
+ */
15559
+ interface MagickoSmartLockAiProps extends React.SVGProps<SVGSVGElement> {
15560
+ size?: number | string;
15561
+ }
15562
+ /**
15563
+ * MagickoSmartLockAi icon component
15564
+ * @example
15565
+ * ```tsx
15566
+ * import { MagickoSmartLockAi } from 'magick-icons';
15567
+ *
15568
+ * <MagickoSmartLockAi size={24} className="text-blue-500" strokeWidth={2} />
15569
+ * ```
15570
+ */
15571
+ declare const MagickoSmartLockAi: React.ForwardRefExoticComponent<Omit<MagickoSmartLockAiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15572
+
15573
+ /**
15574
+ * Props for the MagickoSmile icon component
15575
+ * @property {number | string} [size] - Size of the icon (default: 24)
15576
+ */
15577
+ interface MagickoSmileProps extends React.SVGProps<SVGSVGElement> {
15578
+ size?: number | string;
15579
+ }
15580
+ /**
15581
+ * MagickoSmile icon component
15582
+ * @example
15583
+ * ```tsx
15584
+ * import { MagickoSmile } from 'magick-icons';
15585
+ *
15586
+ * <MagickoSmile size={24} className="text-blue-500" strokeWidth={2} />
15587
+ * ```
15588
+ */
15589
+ declare const MagickoSmile: React.ForwardRefExoticComponent<Omit<MagickoSmileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15590
+
15591
+ /**
15592
+ * Props for the MagickoSmileys icon component
15593
+ * @property {number | string} [size] - Size of the icon (default: 24)
15594
+ */
15595
+ interface MagickoSmileysProps extends React.SVGProps<SVGSVGElement> {
15596
+ size?: number | string;
15597
+ }
15598
+ /**
15599
+ * MagickoSmileys icon component
15600
+ * @example
15601
+ * ```tsx
15602
+ * import { MagickoSmileys } from 'magick-icons';
15603
+ *
15604
+ * <MagickoSmileys size={24} className="text-blue-500" strokeWidth={2} />
15605
+ * ```
15606
+ */
15607
+ declare const MagickoSmileys: React.ForwardRefExoticComponent<Omit<MagickoSmileysProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15608
+
15609
+ /**
15610
+ * Props for the MagickoSmilingWithHeart icon component
15611
+ * @property {number | string} [size] - Size of the icon (default: 24)
15612
+ */
15613
+ interface MagickoSmilingWithHeartProps extends React.SVGProps<SVGSVGElement> {
15614
+ size?: number | string;
15615
+ }
15616
+ /**
15617
+ * MagickoSmilingWithHeart icon component
15618
+ * @example
15619
+ * ```tsx
15620
+ * import { MagickoSmilingWithHeart } from 'magick-icons';
15621
+ *
15622
+ * <MagickoSmilingWithHeart size={24} className="text-blue-500" strokeWidth={2} />
15623
+ * ```
15624
+ */
15625
+ declare const MagickoSmilingWithHeart: React.ForwardRefExoticComponent<Omit<MagickoSmilingWithHeartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15626
+
15627
+ /**
15628
+ * Props for the MagickoSms icon component
15629
+ * @property {number | string} [size] - Size of the icon (default: 24)
15630
+ */
15631
+ interface MagickoSmsProps extends React.SVGProps<SVGSVGElement> {
15632
+ size?: number | string;
15633
+ }
15634
+ /**
15635
+ * MagickoSms icon component
15636
+ * @example
15637
+ * ```tsx
15638
+ * import { MagickoSms } from 'magick-icons';
15639
+ *
15640
+ * <MagickoSms size={24} className="text-blue-500" strokeWidth={2} />
15641
+ * ```
15642
+ */
15643
+ declare const MagickoSms: React.ForwardRefExoticComponent<Omit<MagickoSmsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15644
+
15645
+ /**
15646
+ * Props for the MagickoSmsNotification icon component
15647
+ * @property {number | string} [size] - Size of the icon (default: 24)
15648
+ */
15649
+ interface MagickoSmsNotificationProps extends React.SVGProps<SVGSVGElement> {
15650
+ size?: number | string;
15651
+ }
15652
+ /**
15653
+ * MagickoSmsNotification icon component
15654
+ * @example
15655
+ * ```tsx
15656
+ * import { MagickoSmsNotification } from 'magick-icons';
15657
+ *
15658
+ * <MagickoSmsNotification size={24} className="text-blue-500" strokeWidth={2} />
15659
+ * ```
15660
+ */
15661
+ declare const MagickoSmsNotification: React.ForwardRefExoticComponent<Omit<MagickoSmsNotificationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15662
+
15663
+ /**
15664
+ * Props for the MagickoSnowflake icon component
15665
+ * @property {number | string} [size] - Size of the icon (default: 24)
15666
+ */
15667
+ interface MagickoSnowflakeProps extends React.SVGProps<SVGSVGElement> {
15668
+ size?: number | string;
15669
+ }
15670
+ /**
15671
+ * MagickoSnowflake icon component
15672
+ * @example
15673
+ * ```tsx
15674
+ * import { MagickoSnowflake } from 'magick-icons';
15675
+ *
15676
+ * <MagickoSnowflake size={24} className="text-blue-500" strokeWidth={2} />
15677
+ * ```
15678
+ */
15679
+ declare const MagickoSnowflake: React.ForwardRefExoticComponent<Omit<MagickoSnowflakeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15680
+
15681
+ /**
15682
+ * Props for the MagickoSort icon component
15683
+ * @property {number | string} [size] - Size of the icon (default: 24)
15684
+ */
15685
+ interface MagickoSortProps extends React.SVGProps<SVGSVGElement> {
15686
+ size?: number | string;
15687
+ }
15688
+ /**
15689
+ * MagickoSort icon component
15690
+ * @example
15691
+ * ```tsx
15692
+ * import { MagickoSort } from 'magick-icons';
15693
+ *
15694
+ * <MagickoSort size={24} className="text-blue-500" strokeWidth={2} />
15695
+ * ```
15696
+ */
15697
+ declare const MagickoSort: React.ForwardRefExoticComponent<Omit<MagickoSortProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15698
+
15699
+ /**
15700
+ * Props for the MagickoSortAdd icon component
15701
+ * @property {number | string} [size] - Size of the icon (default: 24)
15702
+ */
15703
+ interface MagickoSortAddProps extends React.SVGProps<SVGSVGElement> {
15704
+ size?: number | string;
15705
+ }
15706
+ /**
15707
+ * MagickoSortAdd icon component
15708
+ * @example
15709
+ * ```tsx
15710
+ * import { MagickoSortAdd } from 'magick-icons';
15711
+ *
15712
+ * <MagickoSortAdd size={24} className="text-blue-500" strokeWidth={2} />
15713
+ * ```
15714
+ */
15715
+ declare const MagickoSortAdd: React.ForwardRefExoticComponent<Omit<MagickoSortAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15716
+
15717
+ /**
15718
+ * Props for the MagickoSortAscending icon component
15719
+ * @property {number | string} [size] - Size of the icon (default: 24)
15720
+ */
15721
+ interface MagickoSortAscendingProps extends React.SVGProps<SVGSVGElement> {
15722
+ size?: number | string;
15723
+ }
15724
+ /**
15725
+ * MagickoSortAscending icon component
15726
+ * @example
15727
+ * ```tsx
15728
+ * import { MagickoSortAscending } from 'magick-icons';
15729
+ *
15730
+ * <MagickoSortAscending size={24} className="text-blue-500" strokeWidth={2} />
15731
+ * ```
15732
+ */
15733
+ declare const MagickoSortAscending: React.ForwardRefExoticComponent<Omit<MagickoSortAscendingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15734
+
15735
+ /**
15736
+ * Props for the MagickoSortCheck icon component
15737
+ * @property {number | string} [size] - Size of the icon (default: 24)
15738
+ */
15739
+ interface MagickoSortCheckProps extends React.SVGProps<SVGSVGElement> {
15740
+ size?: number | string;
15741
+ }
15742
+ /**
15743
+ * MagickoSortCheck icon component
15744
+ * @example
15745
+ * ```tsx
15746
+ * import { MagickoSortCheck } from 'magick-icons';
15747
+ *
15748
+ * <MagickoSortCheck size={24} className="text-blue-500" strokeWidth={2} />
15749
+ * ```
15750
+ */
15751
+ declare const MagickoSortCheck: React.ForwardRefExoticComponent<Omit<MagickoSortCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15752
+
15753
+ /**
15754
+ * Props for the MagickoSortDescending icon component
15755
+ * @property {number | string} [size] - Size of the icon (default: 24)
15756
+ */
15757
+ interface MagickoSortDescendingProps extends React.SVGProps<SVGSVGElement> {
15758
+ size?: number | string;
15759
+ }
15760
+ /**
15761
+ * MagickoSortDescending icon component
15762
+ * @example
15763
+ * ```tsx
15764
+ * import { MagickoSortDescending } from 'magick-icons';
15765
+ *
15766
+ * <MagickoSortDescending size={24} className="text-blue-500" strokeWidth={2} />
15767
+ * ```
15768
+ */
15769
+ declare const MagickoSortDescending: React.ForwardRefExoticComponent<Omit<MagickoSortDescendingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15770
+
15771
+ /**
15772
+ * Props for the MagickoSortRemove icon component
15773
+ * @property {number | string} [size] - Size of the icon (default: 24)
15774
+ */
15775
+ interface MagickoSortRemoveProps extends React.SVGProps<SVGSVGElement> {
15776
+ size?: number | string;
15777
+ }
15778
+ /**
15779
+ * MagickoSortRemove icon component
15780
+ * @example
15781
+ * ```tsx
15782
+ * import { MagickoSortRemove } from 'magick-icons';
15783
+ *
15784
+ * <MagickoSortRemove size={24} className="text-blue-500" strokeWidth={2} />
15785
+ * ```
15786
+ */
15787
+ declare const MagickoSortRemove: React.ForwardRefExoticComponent<Omit<MagickoSortRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15788
+
15789
+ /**
15790
+ * Props for the MagickoSound icon component
15791
+ * @property {number | string} [size] - Size of the icon (default: 24)
15792
+ */
15793
+ interface MagickoSoundProps extends React.SVGProps<SVGSVGElement> {
15794
+ size?: number | string;
15795
+ }
15796
+ /**
15797
+ * MagickoSound icon component
15798
+ * @example
15799
+ * ```tsx
15800
+ * import { MagickoSound } from 'magick-icons';
15801
+ *
15802
+ * <MagickoSound size={24} className="text-blue-500" strokeWidth={2} />
15803
+ * ```
15804
+ */
15805
+ declare const MagickoSound: React.ForwardRefExoticComponent<Omit<MagickoSoundProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15806
+
15807
+ /**
15808
+ * Props for the MagickoSound1 icon component
15809
+ * @property {number | string} [size] - Size of the icon (default: 24)
15810
+ */
15811
+ interface MagickoSound1Props extends React.SVGProps<SVGSVGElement> {
15812
+ size?: number | string;
15813
+ }
15814
+ /**
15815
+ * MagickoSound1 icon component
15816
+ * @example
15817
+ * ```tsx
15818
+ * import { MagickoSound1 } from 'magick-icons';
15819
+ *
15820
+ * <MagickoSound1 size={24} className="text-blue-500" strokeWidth={2} />
15821
+ * ```
15822
+ */
15823
+ declare const MagickoSound1: React.ForwardRefExoticComponent<Omit<MagickoSound1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15824
+
15825
+ /**
15826
+ * Props for the MagickoSpeaker icon component
15827
+ * @property {number | string} [size] - Size of the icon (default: 24)
15828
+ */
15829
+ interface MagickoSpeakerProps extends React.SVGProps<SVGSVGElement> {
15830
+ size?: number | string;
15831
+ }
15832
+ /**
15833
+ * MagickoSpeaker icon component
15834
+ * @example
15835
+ * ```tsx
15836
+ * import { MagickoSpeaker } from 'magick-icons';
15837
+ *
15838
+ * <MagickoSpeaker size={24} className="text-blue-500" strokeWidth={2} />
15839
+ * ```
15840
+ */
15841
+ declare const MagickoSpeaker: React.ForwardRefExoticComponent<Omit<MagickoSpeakerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15842
+
15843
+ /**
15844
+ * Props for the MagickoSpeaker1 icon component
15845
+ * @property {number | string} [size] - Size of the icon (default: 24)
15846
+ */
15847
+ interface MagickoSpeaker1Props extends React.SVGProps<SVGSVGElement> {
15848
+ size?: number | string;
15849
+ }
15850
+ /**
15851
+ * MagickoSpeaker1 icon component
15852
+ * @example
15853
+ * ```tsx
15854
+ * import { MagickoSpeaker1 } from 'magick-icons';
15855
+ *
15856
+ * <MagickoSpeaker1 size={24} className="text-blue-500" strokeWidth={2} />
15857
+ * ```
15858
+ */
15859
+ declare const MagickoSpeaker1: React.ForwardRefExoticComponent<Omit<MagickoSpeaker1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15860
+
15861
+ /**
15862
+ * Props for the MagickoSquarefinger icon component
15863
+ * @property {number | string} [size] - Size of the icon (default: 24)
15864
+ */
15865
+ interface MagickoSquarefingerProps extends React.SVGProps<SVGSVGElement> {
15866
+ size?: number | string;
15867
+ }
15868
+ /**
15869
+ * MagickoSquarefinger icon component
15870
+ * @example
15871
+ * ```tsx
15872
+ * import { MagickoSquarefinger } from 'magick-icons';
15873
+ *
15874
+ * <MagickoSquarefinger size={24} className="text-blue-500" strokeWidth={2} />
15875
+ * ```
15876
+ */
15877
+ declare const MagickoSquarefinger: React.ForwardRefExoticComponent<Omit<MagickoSquarefingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15878
+
15879
+ /**
15880
+ * Props for the MagickoStar icon component
15881
+ * @property {number | string} [size] - Size of the icon (default: 24)
15882
+ */
15883
+ interface MagickoStarProps extends React.SVGProps<SVGSVGElement> {
15884
+ size?: number | string;
15885
+ }
15886
+ /**
15887
+ * MagickoStar icon component
15888
+ * @example
15889
+ * ```tsx
15890
+ * import { MagickoStar } from 'magick-icons';
15891
+ *
15892
+ * <MagickoStar size={24} className="text-blue-500" strokeWidth={2} />
15893
+ * ```
15894
+ */
15895
+ declare const MagickoStar: React.ForwardRefExoticComponent<Omit<MagickoStarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15896
+
15897
+ /**
15898
+ * Props for the MagickoStarSlash icon component
15899
+ * @property {number | string} [size] - Size of the icon (default: 24)
15900
+ */
15901
+ interface MagickoStarSlashProps extends React.SVGProps<SVGSVGElement> {
15902
+ size?: number | string;
15903
+ }
15904
+ /**
15905
+ * MagickoStarSlash icon component
15906
+ * @example
15907
+ * ```tsx
15908
+ * import { MagickoStarSlash } from 'magick-icons';
15909
+ *
15910
+ * <MagickoStarSlash size={24} className="text-blue-500" strokeWidth={2} />
15911
+ * ```
15912
+ */
15913
+ declare const MagickoStarSlash: React.ForwardRefExoticComponent<Omit<MagickoStarSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15914
+
15915
+ /**
15916
+ * Props for the MagickoStars icon component
15917
+ * @property {number | string} [size] - Size of the icon (default: 24)
15918
+ */
15919
+ interface MagickoStarsProps extends React.SVGProps<SVGSVGElement> {
15920
+ size?: number | string;
15921
+ }
15922
+ /**
15923
+ * MagickoStars icon component
15924
+ * @example
15925
+ * ```tsx
15926
+ * import { MagickoStars } from 'magick-icons';
15927
+ *
15928
+ * <MagickoStars size={24} className="text-blue-500" strokeWidth={2} />
15929
+ * ```
15930
+ */
15931
+ declare const MagickoStars: React.ForwardRefExoticComponent<Omit<MagickoStarsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15932
+
15933
+ /**
15934
+ * Props for the MagickoStars1 icon component
15935
+ * @property {number | string} [size] - Size of the icon (default: 24)
15936
+ */
15937
+ interface MagickoStars1Props extends React.SVGProps<SVGSVGElement> {
15938
+ size?: number | string;
15939
+ }
15940
+ /**
15941
+ * MagickoStars1 icon component
15942
+ * @example
15943
+ * ```tsx
15944
+ * import { MagickoStars1 } from 'magick-icons';
15945
+ *
15946
+ * <MagickoStars1 size={24} className="text-blue-500" strokeWidth={2} />
15947
+ * ```
15948
+ */
15949
+ declare const MagickoStars1: React.ForwardRefExoticComponent<Omit<MagickoStars1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
15950
+
15951
+ /**
15952
+ * Props for the MagickoStatusUp icon component
15953
+ * @property {number | string} [size] - Size of the icon (default: 24)
15954
+ */
15955
+ interface MagickoStatusUpProps extends React.SVGProps<SVGSVGElement> {
15956
+ size?: number | string;
15957
+ }
15958
+ /**
15959
+ * MagickoStatusUp icon component
15960
+ * @example
15961
+ * ```tsx
15962
+ * import { MagickoStatusUp } from 'magick-icons';
15963
+ *
15964
+ * <MagickoStatusUp size={24} className="text-blue-500" strokeWidth={2} />
15965
+ * ```
15966
+ */
15967
+ declare const MagickoStatusUp: React.ForwardRefExoticComponent<Omit<MagickoStatusUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15968
+
15969
+ /**
15970
+ * Props for the MagickoSticker icon component
15971
+ * @property {number | string} [size] - Size of the icon (default: 24)
15972
+ */
15973
+ interface MagickoStickerProps extends React.SVGProps<SVGSVGElement> {
15974
+ size?: number | string;
15975
+ }
15976
+ /**
15977
+ * MagickoSticker icon component
15978
+ * @example
15979
+ * ```tsx
15980
+ * import { MagickoSticker } from 'magick-icons';
15981
+ *
15982
+ * <MagickoSticker size={24} className="text-blue-500" strokeWidth={2} />
15983
+ * ```
15984
+ */
15985
+ declare const MagickoSticker: React.ForwardRefExoticComponent<Omit<MagickoStickerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15986
+
15987
+ /**
15988
+ * Props for the MagickoStickynote icon component
15989
+ * @property {number | string} [size] - Size of the icon (default: 24)
15990
+ */
15991
+ interface MagickoStickynoteProps extends React.SVGProps<SVGSVGElement> {
15992
+ size?: number | string;
15993
+ }
15994
+ /**
15995
+ * MagickoStickynote icon component
15996
+ * @example
15997
+ * ```tsx
15998
+ * import { MagickoStickynote } from 'magick-icons';
15999
+ *
16000
+ * <MagickoStickynote size={24} className="text-blue-500" strokeWidth={2} />
16001
+ * ```
16002
+ */
16003
+ declare const MagickoStickynote: React.ForwardRefExoticComponent<Omit<MagickoStickynoteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16004
+
16005
+ /**
16006
+ * Props for the MagickoStop icon component
16007
+ * @property {number | string} [size] - Size of the icon (default: 24)
16008
+ */
16009
+ interface MagickoStopProps extends React.SVGProps<SVGSVGElement> {
16010
+ size?: number | string;
16011
+ }
16012
+ /**
16013
+ * MagickoStop icon component
16014
+ * @example
16015
+ * ```tsx
16016
+ * import { MagickoStop } from 'magick-icons';
16017
+ *
16018
+ * <MagickoStop size={24} className="text-blue-500" strokeWidth={2} />
16019
+ * ```
16020
+ */
16021
+ declare const MagickoStop: React.ForwardRefExoticComponent<Omit<MagickoStopProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16022
+
16023
+ /**
16024
+ * Props for the MagickoStory icon component
16025
+ * @property {number | string} [size] - Size of the icon (default: 24)
16026
+ */
16027
+ interface MagickoStoryProps extends React.SVGProps<SVGSVGElement> {
16028
+ size?: number | string;
16029
+ }
16030
+ /**
16031
+ * MagickoStory icon component
16032
+ * @example
16033
+ * ```tsx
16034
+ * import { MagickoStory } from 'magick-icons';
16035
+ *
16036
+ * <MagickoStory size={24} className="text-blue-500" strokeWidth={2} />
16037
+ * ```
16038
+ */
16039
+ declare const MagickoStory: React.ForwardRefExoticComponent<Omit<MagickoStoryProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16040
+
16041
+ /**
16042
+ * Props for the MagickoSubtitle icon component
16043
+ * @property {number | string} [size] - Size of the icon (default: 24)
16044
+ */
16045
+ interface MagickoSubtitleProps extends React.SVGProps<SVGSVGElement> {
16046
+ size?: number | string;
16047
+ }
16048
+ /**
16049
+ * MagickoSubtitle icon component
16050
+ * @example
16051
+ * ```tsx
16052
+ * import { MagickoSubtitle } from 'magick-icons';
16053
+ *
16054
+ * <MagickoSubtitle size={24} className="text-blue-500" strokeWidth={2} />
16055
+ * ```
16056
+ */
16057
+ declare const MagickoSubtitle: React.ForwardRefExoticComponent<Omit<MagickoSubtitleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16058
+
16059
+ /**
16060
+ * Props for the MagickoSun icon component
16061
+ * @property {number | string} [size] - Size of the icon (default: 24)
16062
+ */
16063
+ interface MagickoSunProps extends React.SVGProps<SVGSVGElement> {
16064
+ size?: number | string;
16065
+ }
16066
+ /**
16067
+ * MagickoSun icon component
16068
+ * @example
16069
+ * ```tsx
16070
+ * import { MagickoSun } from 'magick-icons';
16071
+ *
16072
+ * <MagickoSun size={24} className="text-blue-500" strokeWidth={2} />
16073
+ * ```
16074
+ */
16075
+ declare const MagickoSun: React.ForwardRefExoticComponent<Omit<MagickoSunProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16076
+
16077
+ /**
16078
+ * Props for the MagickoSun1 icon component
16079
+ * @property {number | string} [size] - Size of the icon (default: 24)
16080
+ */
16081
+ interface MagickoSun1Props extends React.SVGProps<SVGSVGElement> {
16082
+ size?: number | string;
16083
+ }
16084
+ /**
16085
+ * MagickoSun1 icon component
16086
+ * @example
16087
+ * ```tsx
16088
+ * import { MagickoSun1 } from 'magick-icons';
16089
+ *
16090
+ * <MagickoSun1 size={24} className="text-blue-500" strokeWidth={2} />
16091
+ * ```
16092
+ */
16093
+ declare const MagickoSun1: React.ForwardRefExoticComponent<Omit<MagickoSun1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16094
+
16095
+ /**
16096
+ * Props for the MagickoSunFog icon component
16097
+ * @property {number | string} [size] - Size of the icon (default: 24)
16098
+ */
16099
+ interface MagickoSunFogProps extends React.SVGProps<SVGSVGElement> {
16100
+ size?: number | string;
16101
+ }
16102
+ /**
16103
+ * MagickoSunFog icon component
16104
+ * @example
16105
+ * ```tsx
16106
+ * import { MagickoSunFog } from 'magick-icons';
16107
+ *
16108
+ * <MagickoSunFog size={24} className="text-blue-500" strokeWidth={2} />
16109
+ * ```
16110
+ */
16111
+ declare const MagickoSunFog: React.ForwardRefExoticComponent<Omit<MagickoSunFogProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16112
+
15033
16113
  /**
15034
16114
  * Props for the Marketing icon component
15035
16115
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -15318,4 +16398,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
15318
16398
  */
15319
16399
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
15320
16400
 
15321
- export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, MagickoMicrophone211, type MagickoMicrophone211Props, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, MagickoReceipt211, type MagickoReceipt211Props, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight, MagickoRotateRight1, type MagickoRotateRight1Props, type MagickoRotateRightProps, MagickoRowHorizontal, type MagickoRowHorizontalProps, MagickoRowVertical, type MagickoRowVerticalProps, MagickoSad3, type MagickoSad3Props, MagickoSadFace, type MagickoSadFaceProps, MagickoSagittarius, type MagickoSagittariusProps, MagickoSatisfied, type MagickoSatisfiedProps, MagickoSave2, type MagickoSave2Props, MagickoSaveAdd, type MagickoSaveAddProps, MagickoSaveMinus, type MagickoSaveMinusProps, MagickoSaveRemove, type MagickoSaveRemoveProps, MagickoScheduled1, type MagickoScheduled1Props, MagickoScreenmirroring, type MagickoScreenmirroringProps, MagickoScroll01, type MagickoScroll01Props, MagickoScroll02, type MagickoScroll02Props, MagickoScrollfinger, type MagickoScrollfingerProps, MagickoSearch, MagickoSearchCloud, type MagickoSearchCloudProps, type MagickoSearchProps, MagickoSearchZoomIn1, type MagickoSearchZoomIn1Props, MagickoSearchZoomOut1, type MagickoSearchZoomOut1Props, MagickoSecurity, type MagickoSecurityProps, MagickoSecuritySafe, type MagickoSecuritySafeProps, MagickoSecurityUser, type MagickoSecurityUserProps, MagickoSend1, type MagickoSend1Props, MagickoSend2, MagickoSend21, type MagickoSend21Props, type MagickoSend2Props, MagickoSendCloud, type MagickoSendCloudProps, MagickoSendReceiveCloud, type MagickoSendReceiveCloudProps, MagickoSendSquare01, type MagickoSendSquare01Props, MagickoSendSquare02, type MagickoSendSquare02Props, 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 };
16401
+ export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, MagickoMicrophone211, type MagickoMicrophone211Props, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, MagickoReceipt211, type MagickoReceipt211Props, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight, MagickoRotateRight1, type MagickoRotateRight1Props, type MagickoRotateRightProps, MagickoRowHorizontal, type MagickoRowHorizontalProps, MagickoRowVertical, type MagickoRowVerticalProps, MagickoSad3, type MagickoSad3Props, MagickoSadFace, type MagickoSadFaceProps, MagickoSagittarius, type MagickoSagittariusProps, MagickoSatisfied, type MagickoSatisfiedProps, MagickoSave2, type MagickoSave2Props, MagickoSaveAdd, type MagickoSaveAddProps, MagickoSaveMinus, type MagickoSaveMinusProps, MagickoSaveRemove, type MagickoSaveRemoveProps, MagickoScheduled1, type MagickoScheduled1Props, MagickoScreenmirroring, type MagickoScreenmirroringProps, MagickoScroll01, type MagickoScroll01Props, MagickoScroll02, type MagickoScroll02Props, MagickoScrollfinger, type MagickoScrollfingerProps, MagickoSearch, MagickoSearchCloud, type MagickoSearchCloudProps, type MagickoSearchProps, MagickoSearchZoomIn1, type MagickoSearchZoomIn1Props, MagickoSearchZoomOut1, type MagickoSearchZoomOut1Props, MagickoSecurity, type MagickoSecurityProps, MagickoSecuritySafe, type MagickoSecuritySafeProps, MagickoSecurityUser, type MagickoSecurityUserProps, MagickoSend, MagickoSend1, type MagickoSend1Props, MagickoSend2, MagickoSend21, type MagickoSend21Props, type MagickoSend2Props, MagickoSendCloud, type MagickoSendCloudProps, type MagickoSendProps, MagickoSendReceiveCloud, type MagickoSendReceiveCloudProps, MagickoSendSquare01, type MagickoSendSquare01Props, MagickoSendSquare02, type MagickoSendSquare02Props, MagickoSetting2, type MagickoSetting2Props, MagickoSetting3, type MagickoSetting3Props, MagickoSetting4, type MagickoSetting4Props, MagickoSetting5, type MagickoSetting5Props, MagickoSettings, MagickoSettings1, type MagickoSettings1Props, type MagickoSettingsProps, MagickoShare, type MagickoShareProps, MagickoShiningHeart, type MagickoShiningHeartProps, MagickoShip, type MagickoShipProps, MagickoShop, MagickoShop1, type MagickoShop1Props, type MagickoShopProps, MagickoShoppingBag, type MagickoShoppingBagProps, MagickoShoppingCart, type MagickoShoppingCartProps, MagickoShuffle, type MagickoShuffleProps, MagickoSidebarBottom, type MagickoSidebarBottomProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSidebarRight, type MagickoSidebarRightProps, MagickoSidebarTop, type MagickoSidebarTopProps, MagickoSignedCloud, type MagickoSignedCloudProps, MagickoSimcard, MagickoSimcard1, type MagickoSimcard1Props, MagickoSimcard2, type MagickoSimcard2Props, type MagickoSimcardProps, MagickoSlash, type MagickoSlashProps, MagickoSleepZzz, type MagickoSleepZzzProps, MagickoSmallcaps, type MagickoSmallcapsProps, MagickoSmartBag, type MagickoSmartBagProps, MagickoSmartCar, type MagickoSmartCarProps, MagickoSmartCursor, type MagickoSmartCursorProps, MagickoSmartLockAi, type MagickoSmartLockAiProps, MagickoSmile, type MagickoSmileProps, MagickoSmileys, type MagickoSmileysProps, MagickoSmilingWithHeart, type MagickoSmilingWithHeartProps, MagickoSms, MagickoSmsNotification, type MagickoSmsNotificationProps, type MagickoSmsProps, MagickoSnowflake, type MagickoSnowflakeProps, MagickoSort, MagickoSortAdd, type MagickoSortAddProps, MagickoSortAscending, type MagickoSortAscendingProps, MagickoSortCheck, type MagickoSortCheckProps, MagickoSortDescending, type MagickoSortDescendingProps, type MagickoSortProps, MagickoSortRemove, type MagickoSortRemoveProps, MagickoSound, MagickoSound1, type MagickoSound1Props, type MagickoSoundProps, MagickoSpeaker, MagickoSpeaker1, type MagickoSpeaker1Props, type MagickoSpeakerProps, MagickoSquarefinger, type MagickoSquarefingerProps, MagickoStar, type MagickoStarProps, MagickoStarSlash, type MagickoStarSlashProps, MagickoStars, MagickoStars1, type MagickoStars1Props, type MagickoStarsProps, MagickoStatusUp, type MagickoStatusUpProps, MagickoSticker, type MagickoStickerProps, MagickoStickynote, type MagickoStickynoteProps, MagickoStop, type MagickoStopProps, MagickoStory, type MagickoStoryProps, MagickoSubtitle, type MagickoSubtitleProps, MagickoSun, MagickoSun1, type MagickoSun1Props, MagickoSunFog, type MagickoSunFogProps, type MagickoSunProps, 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 };