magick-icons 0.1.244 → 0.1.246

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
@@ -16110,6 +16110,1086 @@ interface MagickoSunFogProps extends React.SVGProps<SVGSVGElement> {
16110
16110
  */
16111
16111
  declare const MagickoSunFog: React.ForwardRefExoticComponent<Omit<MagickoSunFogProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16112
16112
 
16113
+ /**
16114
+ * Props for the MagickoSupport icon component
16115
+ * @property {number | string} [size] - Size of the icon (default: 24)
16116
+ */
16117
+ interface MagickoSupportProps extends React.SVGProps<SVGSVGElement> {
16118
+ size?: number | string;
16119
+ }
16120
+ /**
16121
+ * MagickoSupport icon component
16122
+ * @example
16123
+ * ```tsx
16124
+ * import { MagickoSupport } from 'magick-icons';
16125
+ *
16126
+ * <MagickoSupport size={24} className="text-blue-500" strokeWidth={2} />
16127
+ * ```
16128
+ */
16129
+ declare const MagickoSupport: React.ForwardRefExoticComponent<Omit<MagickoSupportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16130
+
16131
+ /**
16132
+ * Props for the MagickoSupport1 icon component
16133
+ * @property {number | string} [size] - Size of the icon (default: 24)
16134
+ */
16135
+ interface MagickoSupport1Props extends React.SVGProps<SVGSVGElement> {
16136
+ size?: number | string;
16137
+ }
16138
+ /**
16139
+ * MagickoSupport1 icon component
16140
+ * @example
16141
+ * ```tsx
16142
+ * import { MagickoSupport1 } from 'magick-icons';
16143
+ *
16144
+ * <MagickoSupport1 size={24} className="text-blue-500" strokeWidth={2} />
16145
+ * ```
16146
+ */
16147
+ declare const MagickoSupport1: React.ForwardRefExoticComponent<Omit<MagickoSupport1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16148
+
16149
+ /**
16150
+ * Props for the MagickoSwapHorizontal01 icon component
16151
+ * @property {number | string} [size] - Size of the icon (default: 24)
16152
+ */
16153
+ interface MagickoSwapHorizontal01Props extends React.SVGProps<SVGSVGElement> {
16154
+ size?: number | string;
16155
+ }
16156
+ /**
16157
+ * MagickoSwapHorizontal01 icon component
16158
+ * @example
16159
+ * ```tsx
16160
+ * import { MagickoSwapHorizontal01 } from 'magick-icons';
16161
+ *
16162
+ * <MagickoSwapHorizontal01 size={24} className="text-blue-500" strokeWidth={2} />
16163
+ * ```
16164
+ */
16165
+ declare const MagickoSwapHorizontal01: React.ForwardRefExoticComponent<Omit<MagickoSwapHorizontal01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16166
+
16167
+ /**
16168
+ * Props for the MagickoSwapHorizontal02 icon component
16169
+ * @property {number | string} [size] - Size of the icon (default: 24)
16170
+ */
16171
+ interface MagickoSwapHorizontal02Props extends React.SVGProps<SVGSVGElement> {
16172
+ size?: number | string;
16173
+ }
16174
+ /**
16175
+ * MagickoSwapHorizontal02 icon component
16176
+ * @example
16177
+ * ```tsx
16178
+ * import { MagickoSwapHorizontal02 } from 'magick-icons';
16179
+ *
16180
+ * <MagickoSwapHorizontal02 size={24} className="text-blue-500" strokeWidth={2} />
16181
+ * ```
16182
+ */
16183
+ declare const MagickoSwapHorizontal02: React.ForwardRefExoticComponent<Omit<MagickoSwapHorizontal02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16184
+
16185
+ /**
16186
+ * Props for the MagickoSwapHorizontal03 icon component
16187
+ * @property {number | string} [size] - Size of the icon (default: 24)
16188
+ */
16189
+ interface MagickoSwapHorizontal03Props extends React.SVGProps<SVGSVGElement> {
16190
+ size?: number | string;
16191
+ }
16192
+ /**
16193
+ * MagickoSwapHorizontal03 icon component
16194
+ * @example
16195
+ * ```tsx
16196
+ * import { MagickoSwapHorizontal03 } from 'magick-icons';
16197
+ *
16198
+ * <MagickoSwapHorizontal03 size={24} className="text-blue-500" strokeWidth={2} />
16199
+ * ```
16200
+ */
16201
+ declare const MagickoSwapHorizontal03: React.ForwardRefExoticComponent<Omit<MagickoSwapHorizontal03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16202
+
16203
+ /**
16204
+ * Props for the MagickoSweatSmile icon component
16205
+ * @property {number | string} [size] - Size of the icon (default: 24)
16206
+ */
16207
+ interface MagickoSweatSmileProps extends React.SVGProps<SVGSVGElement> {
16208
+ size?: number | string;
16209
+ }
16210
+ /**
16211
+ * MagickoSweatSmile icon component
16212
+ * @example
16213
+ * ```tsx
16214
+ * import { MagickoSweatSmile } from 'magick-icons';
16215
+ *
16216
+ * <MagickoSweatSmile size={24} className="text-blue-500" strokeWidth={2} />
16217
+ * ```
16218
+ */
16219
+ declare const MagickoSweatSmile: React.ForwardRefExoticComponent<Omit<MagickoSweatSmileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16220
+
16221
+ /**
16222
+ * Props for the MagickoTag icon component
16223
+ * @property {number | string} [size] - Size of the icon (default: 24)
16224
+ */
16225
+ interface MagickoTagProps extends React.SVGProps<SVGSVGElement> {
16226
+ size?: number | string;
16227
+ }
16228
+ /**
16229
+ * MagickoTag icon component
16230
+ * @example
16231
+ * ```tsx
16232
+ * import { MagickoTag } from 'magick-icons';
16233
+ *
16234
+ * <MagickoTag size={24} className="text-blue-500" strokeWidth={2} />
16235
+ * ```
16236
+ */
16237
+ declare const MagickoTag: React.ForwardRefExoticComponent<Omit<MagickoTagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16238
+
16239
+ /**
16240
+ * Props for the MagickoTag2 icon component
16241
+ * @property {number | string} [size] - Size of the icon (default: 24)
16242
+ */
16243
+ interface MagickoTag2Props extends React.SVGProps<SVGSVGElement> {
16244
+ size?: number | string;
16245
+ }
16246
+ /**
16247
+ * MagickoTag2 icon component
16248
+ * @example
16249
+ * ```tsx
16250
+ * import { MagickoTag2 } from 'magick-icons';
16251
+ *
16252
+ * <MagickoTag2 size={24} className="text-blue-500" strokeWidth={2} />
16253
+ * ```
16254
+ */
16255
+ declare const MagickoTag2: React.ForwardRefExoticComponent<Omit<MagickoTag2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16256
+
16257
+ /**
16258
+ * Props for the MagickoTagCross icon component
16259
+ * @property {number | string} [size] - Size of the icon (default: 24)
16260
+ */
16261
+ interface MagickoTagCrossProps extends React.SVGProps<SVGSVGElement> {
16262
+ size?: number | string;
16263
+ }
16264
+ /**
16265
+ * MagickoTagCross icon component
16266
+ * @example
16267
+ * ```tsx
16268
+ * import { MagickoTagCross } from 'magick-icons';
16269
+ *
16270
+ * <MagickoTagCross size={24} className="text-blue-500" strokeWidth={2} />
16271
+ * ```
16272
+ */
16273
+ declare const MagickoTagCross: React.ForwardRefExoticComponent<Omit<MagickoTagCrossProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16274
+
16275
+ /**
16276
+ * Props for the MagickoTagUser icon component
16277
+ * @property {number | string} [size] - Size of the icon (default: 24)
16278
+ */
16279
+ interface MagickoTagUserProps extends React.SVGProps<SVGSVGElement> {
16280
+ size?: number | string;
16281
+ }
16282
+ /**
16283
+ * MagickoTagUser icon component
16284
+ * @example
16285
+ * ```tsx
16286
+ * import { MagickoTagUser } from 'magick-icons';
16287
+ *
16288
+ * <MagickoTagUser size={24} className="text-blue-500" strokeWidth={2} />
16289
+ * ```
16290
+ */
16291
+ declare const MagickoTagUser: React.ForwardRefExoticComponent<Omit<MagickoTagUserProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16292
+
16293
+ /**
16294
+ * Props for the MagickoTask icon component
16295
+ * @property {number | string} [size] - Size of the icon (default: 24)
16296
+ */
16297
+ interface MagickoTaskProps extends React.SVGProps<SVGSVGElement> {
16298
+ size?: number | string;
16299
+ }
16300
+ /**
16301
+ * MagickoTask icon component
16302
+ * @example
16303
+ * ```tsx
16304
+ * import { MagickoTask } from 'magick-icons';
16305
+ *
16306
+ * <MagickoTask size={24} className="text-blue-500" strokeWidth={2} />
16307
+ * ```
16308
+ */
16309
+ declare const MagickoTask: React.ForwardRefExoticComponent<Omit<MagickoTaskProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16310
+
16311
+ /**
16312
+ * Props for the MagickoTaskSquare icon component
16313
+ * @property {number | string} [size] - Size of the icon (default: 24)
16314
+ */
16315
+ interface MagickoTaskSquareProps extends React.SVGProps<SVGSVGElement> {
16316
+ size?: number | string;
16317
+ }
16318
+ /**
16319
+ * MagickoTaskSquare icon component
16320
+ * @example
16321
+ * ```tsx
16322
+ * import { MagickoTaskSquare } from 'magick-icons';
16323
+ *
16324
+ * <MagickoTaskSquare size={24} className="text-blue-500" strokeWidth={2} />
16325
+ * ```
16326
+ */
16327
+ declare const MagickoTaskSquare: React.ForwardRefExoticComponent<Omit<MagickoTaskSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16328
+
16329
+ /**
16330
+ * Props for the MagickoTeacher icon component
16331
+ * @property {number | string} [size] - Size of the icon (default: 24)
16332
+ */
16333
+ interface MagickoTeacherProps extends React.SVGProps<SVGSVGElement> {
16334
+ size?: number | string;
16335
+ }
16336
+ /**
16337
+ * MagickoTeacher icon component
16338
+ * @example
16339
+ * ```tsx
16340
+ * import { MagickoTeacher } from 'magick-icons';
16341
+ *
16342
+ * <MagickoTeacher size={24} className="text-blue-500" strokeWidth={2} />
16343
+ * ```
16344
+ */
16345
+ declare const MagickoTeacher: React.ForwardRefExoticComponent<Omit<MagickoTeacherProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16346
+
16347
+ /**
16348
+ * Props for the MagickoTelescope icon component
16349
+ * @property {number | string} [size] - Size of the icon (default: 24)
16350
+ */
16351
+ interface MagickoTelescopeProps extends React.SVGProps<SVGSVGElement> {
16352
+ size?: number | string;
16353
+ }
16354
+ /**
16355
+ * MagickoTelescope icon component
16356
+ * @example
16357
+ * ```tsx
16358
+ * import { MagickoTelescope } from 'magick-icons';
16359
+ *
16360
+ * <MagickoTelescope size={24} className="text-blue-500" strokeWidth={2} />
16361
+ * ```
16362
+ */
16363
+ declare const MagickoTelescope: React.ForwardRefExoticComponent<Omit<MagickoTelescopeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16364
+
16365
+ /**
16366
+ * Props for the MagickoTelescope1 icon component
16367
+ * @property {number | string} [size] - Size of the icon (default: 24)
16368
+ */
16369
+ interface MagickoTelescope1Props extends React.SVGProps<SVGSVGElement> {
16370
+ size?: number | string;
16371
+ }
16372
+ /**
16373
+ * MagickoTelescope1 icon component
16374
+ * @example
16375
+ * ```tsx
16376
+ * import { MagickoTelescope1 } from 'magick-icons';
16377
+ *
16378
+ * <MagickoTelescope1 size={24} className="text-blue-500" strokeWidth={2} />
16379
+ * ```
16380
+ */
16381
+ declare const MagickoTelescope1: React.ForwardRefExoticComponent<Omit<MagickoTelescope1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16382
+
16383
+ /**
16384
+ * Props for the MagickoText icon component
16385
+ * @property {number | string} [size] - Size of the icon (default: 24)
16386
+ */
16387
+ interface MagickoTextProps extends React.SVGProps<SVGSVGElement> {
16388
+ size?: number | string;
16389
+ }
16390
+ /**
16391
+ * MagickoText icon component
16392
+ * @example
16393
+ * ```tsx
16394
+ * import { MagickoText } from 'magick-icons';
16395
+ *
16396
+ * <MagickoText size={24} className="text-blue-500" strokeWidth={2} />
16397
+ * ```
16398
+ */
16399
+ declare const MagickoText: React.ForwardRefExoticComponent<Omit<MagickoTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16400
+
16401
+ /**
16402
+ * Props for the MagickoTextBold icon component
16403
+ * @property {number | string} [size] - Size of the icon (default: 24)
16404
+ */
16405
+ interface MagickoTextBoldProps extends React.SVGProps<SVGSVGElement> {
16406
+ size?: number | string;
16407
+ }
16408
+ /**
16409
+ * MagickoTextBold icon component
16410
+ * @example
16411
+ * ```tsx
16412
+ * import { MagickoTextBold } from 'magick-icons';
16413
+ *
16414
+ * <MagickoTextBold size={24} className="text-blue-500" strokeWidth={2} />
16415
+ * ```
16416
+ */
16417
+ declare const MagickoTextBold: React.ForwardRefExoticComponent<Omit<MagickoTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16418
+
16419
+ /**
16420
+ * Props for the MagickoTextItalic icon component
16421
+ * @property {number | string} [size] - Size of the icon (default: 24)
16422
+ */
16423
+ interface MagickoTextItalicProps extends React.SVGProps<SVGSVGElement> {
16424
+ size?: number | string;
16425
+ }
16426
+ /**
16427
+ * MagickoTextItalic icon component
16428
+ * @example
16429
+ * ```tsx
16430
+ * import { MagickoTextItalic } from 'magick-icons';
16431
+ *
16432
+ * <MagickoTextItalic size={24} className="text-blue-500" strokeWidth={2} />
16433
+ * ```
16434
+ */
16435
+ declare const MagickoTextItalic: React.ForwardRefExoticComponent<Omit<MagickoTextItalicProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16436
+
16437
+ /**
16438
+ * Props for the MagickoTextUnderline icon component
16439
+ * @property {number | string} [size] - Size of the icon (default: 24)
16440
+ */
16441
+ interface MagickoTextUnderlineProps extends React.SVGProps<SVGSVGElement> {
16442
+ size?: number | string;
16443
+ }
16444
+ /**
16445
+ * MagickoTextUnderline icon component
16446
+ * @example
16447
+ * ```tsx
16448
+ * import { MagickoTextUnderline } from 'magick-icons';
16449
+ *
16450
+ * <MagickoTextUnderline size={24} className="text-blue-500" strokeWidth={2} />
16451
+ * ```
16452
+ */
16453
+ declare const MagickoTextUnderline: React.ForwardRefExoticComponent<Omit<MagickoTextUnderlineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16454
+
16455
+ /**
16456
+ * Props for the MagickoTextalignCenter icon component
16457
+ * @property {number | string} [size] - Size of the icon (default: 24)
16458
+ */
16459
+ interface MagickoTextalignCenterProps extends React.SVGProps<SVGSVGElement> {
16460
+ size?: number | string;
16461
+ }
16462
+ /**
16463
+ * MagickoTextalignCenter icon component
16464
+ * @example
16465
+ * ```tsx
16466
+ * import { MagickoTextalignCenter } from 'magick-icons';
16467
+ *
16468
+ * <MagickoTextalignCenter size={24} className="text-blue-500" strokeWidth={2} />
16469
+ * ```
16470
+ */
16471
+ declare const MagickoTextalignCenter: React.ForwardRefExoticComponent<Omit<MagickoTextalignCenterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16472
+
16473
+ /**
16474
+ * Props for the MagickoTextalignJustifycenter icon component
16475
+ * @property {number | string} [size] - Size of the icon (default: 24)
16476
+ */
16477
+ interface MagickoTextalignJustifycenterProps extends React.SVGProps<SVGSVGElement> {
16478
+ size?: number | string;
16479
+ }
16480
+ /**
16481
+ * MagickoTextalignJustifycenter icon component
16482
+ * @example
16483
+ * ```tsx
16484
+ * import { MagickoTextalignJustifycenter } from 'magick-icons';
16485
+ *
16486
+ * <MagickoTextalignJustifycenter size={24} className="text-blue-500" strokeWidth={2} />
16487
+ * ```
16488
+ */
16489
+ declare const MagickoTextalignJustifycenter: React.ForwardRefExoticComponent<Omit<MagickoTextalignJustifycenterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16490
+
16491
+ /**
16492
+ * Props for the MagickoTextalignJustifyleft icon component
16493
+ * @property {number | string} [size] - Size of the icon (default: 24)
16494
+ */
16495
+ interface MagickoTextalignJustifyleftProps extends React.SVGProps<SVGSVGElement> {
16496
+ size?: number | string;
16497
+ }
16498
+ /**
16499
+ * MagickoTextalignJustifyleft icon component
16500
+ * @example
16501
+ * ```tsx
16502
+ * import { MagickoTextalignJustifyleft } from 'magick-icons';
16503
+ *
16504
+ * <MagickoTextalignJustifyleft size={24} className="text-blue-500" strokeWidth={2} />
16505
+ * ```
16506
+ */
16507
+ declare const MagickoTextalignJustifyleft: React.ForwardRefExoticComponent<Omit<MagickoTextalignJustifyleftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16508
+
16509
+ /**
16510
+ * Props for the MagickoTextalignJustifyright icon component
16511
+ * @property {number | string} [size] - Size of the icon (default: 24)
16512
+ */
16513
+ interface MagickoTextalignJustifyrightProps extends React.SVGProps<SVGSVGElement> {
16514
+ size?: number | string;
16515
+ }
16516
+ /**
16517
+ * MagickoTextalignJustifyright icon component
16518
+ * @example
16519
+ * ```tsx
16520
+ * import { MagickoTextalignJustifyright } from 'magick-icons';
16521
+ *
16522
+ * <MagickoTextalignJustifyright size={24} className="text-blue-500" strokeWidth={2} />
16523
+ * ```
16524
+ */
16525
+ declare const MagickoTextalignJustifyright: React.ForwardRefExoticComponent<Omit<MagickoTextalignJustifyrightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16526
+
16527
+ /**
16528
+ * Props for the MagickoTextalignLeft icon component
16529
+ * @property {number | string} [size] - Size of the icon (default: 24)
16530
+ */
16531
+ interface MagickoTextalignLeftProps extends React.SVGProps<SVGSVGElement> {
16532
+ size?: number | string;
16533
+ }
16534
+ /**
16535
+ * MagickoTextalignLeft icon component
16536
+ * @example
16537
+ * ```tsx
16538
+ * import { MagickoTextalignLeft } from 'magick-icons';
16539
+ *
16540
+ * <MagickoTextalignLeft size={24} className="text-blue-500" strokeWidth={2} />
16541
+ * ```
16542
+ */
16543
+ declare const MagickoTextalignLeft: React.ForwardRefExoticComponent<Omit<MagickoTextalignLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16544
+
16545
+ /**
16546
+ * Props for the MagickoTextalignRight icon component
16547
+ * @property {number | string} [size] - Size of the icon (default: 24)
16548
+ */
16549
+ interface MagickoTextalignRightProps extends React.SVGProps<SVGSVGElement> {
16550
+ size?: number | string;
16551
+ }
16552
+ /**
16553
+ * MagickoTextalignRight icon component
16554
+ * @example
16555
+ * ```tsx
16556
+ * import { MagickoTextalignRight } from 'magick-icons';
16557
+ *
16558
+ * <MagickoTextalignRight size={24} className="text-blue-500" strokeWidth={2} />
16559
+ * ```
16560
+ */
16561
+ declare const MagickoTextalignRight: React.ForwardRefExoticComponent<Omit<MagickoTextalignRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16562
+
16563
+ /**
16564
+ * Props for the MagickoTickCircle icon component
16565
+ * @property {number | string} [size] - Size of the icon (default: 24)
16566
+ */
16567
+ interface MagickoTickCircleProps extends React.SVGProps<SVGSVGElement> {
16568
+ size?: number | string;
16569
+ }
16570
+ /**
16571
+ * MagickoTickCircle icon component
16572
+ * @example
16573
+ * ```tsx
16574
+ * import { MagickoTickCircle } from 'magick-icons';
16575
+ *
16576
+ * <MagickoTickCircle size={24} className="text-blue-500" strokeWidth={2} />
16577
+ * ```
16578
+ */
16579
+ declare const MagickoTickCircle: React.ForwardRefExoticComponent<Omit<MagickoTickCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16580
+
16581
+ /**
16582
+ * Props for the MagickoTickSquare icon component
16583
+ * @property {number | string} [size] - Size of the icon (default: 24)
16584
+ */
16585
+ interface MagickoTickSquareProps extends React.SVGProps<SVGSVGElement> {
16586
+ size?: number | string;
16587
+ }
16588
+ /**
16589
+ * MagickoTickSquare icon component
16590
+ * @example
16591
+ * ```tsx
16592
+ * import { MagickoTickSquare } from 'magick-icons';
16593
+ *
16594
+ * <MagickoTickSquare size={24} className="text-blue-500" strokeWidth={2} />
16595
+ * ```
16596
+ */
16597
+ declare const MagickoTickSquare: React.ForwardRefExoticComponent<Omit<MagickoTickSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16598
+
16599
+ /**
16600
+ * Props for the MagickoTicket icon component
16601
+ * @property {number | string} [size] - Size of the icon (default: 24)
16602
+ */
16603
+ interface MagickoTicketProps extends React.SVGProps<SVGSVGElement> {
16604
+ size?: number | string;
16605
+ }
16606
+ /**
16607
+ * MagickoTicket icon component
16608
+ * @example
16609
+ * ```tsx
16610
+ * import { MagickoTicket } from 'magick-icons';
16611
+ *
16612
+ * <MagickoTicket size={24} className="text-blue-500" strokeWidth={2} />
16613
+ * ```
16614
+ */
16615
+ declare const MagickoTicket: React.ForwardRefExoticComponent<Omit<MagickoTicketProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16616
+
16617
+ /**
16618
+ * Props for the MagickoTicket1 icon component
16619
+ * @property {number | string} [size] - Size of the icon (default: 24)
16620
+ */
16621
+ interface MagickoTicket1Props extends React.SVGProps<SVGSVGElement> {
16622
+ size?: number | string;
16623
+ }
16624
+ /**
16625
+ * MagickoTicket1 icon component
16626
+ * @example
16627
+ * ```tsx
16628
+ * import { MagickoTicket1 } from 'magick-icons';
16629
+ *
16630
+ * <MagickoTicket1 size={24} className="text-blue-500" strokeWidth={2} />
16631
+ * ```
16632
+ */
16633
+ declare const MagickoTicket1: React.ForwardRefExoticComponent<Omit<MagickoTicket1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16634
+
16635
+ /**
16636
+ * Props for the MagickoTicket2 icon component
16637
+ * @property {number | string} [size] - Size of the icon (default: 24)
16638
+ */
16639
+ interface MagickoTicket2Props extends React.SVGProps<SVGSVGElement> {
16640
+ size?: number | string;
16641
+ }
16642
+ /**
16643
+ * MagickoTicket2 icon component
16644
+ * @example
16645
+ * ```tsx
16646
+ * import { MagickoTicket2 } from 'magick-icons';
16647
+ *
16648
+ * <MagickoTicket2 size={24} className="text-blue-500" strokeWidth={2} />
16649
+ * ```
16650
+ */
16651
+ declare const MagickoTicket2: React.ForwardRefExoticComponent<Omit<MagickoTicket2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16652
+
16653
+ /**
16654
+ * Props for the MagickoTicketDiscount icon component
16655
+ * @property {number | string} [size] - Size of the icon (default: 24)
16656
+ */
16657
+ interface MagickoTicketDiscountProps extends React.SVGProps<SVGSVGElement> {
16658
+ size?: number | string;
16659
+ }
16660
+ /**
16661
+ * MagickoTicketDiscount icon component
16662
+ * @example
16663
+ * ```tsx
16664
+ * import { MagickoTicketDiscount } from 'magick-icons';
16665
+ *
16666
+ * <MagickoTicketDiscount size={24} className="text-blue-500" strokeWidth={2} />
16667
+ * ```
16668
+ */
16669
+ declare const MagickoTicketDiscount: React.ForwardRefExoticComponent<Omit<MagickoTicketDiscountProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16670
+
16671
+ /**
16672
+ * Props for the MagickoTicketExpired icon component
16673
+ * @property {number | string} [size] - Size of the icon (default: 24)
16674
+ */
16675
+ interface MagickoTicketExpiredProps extends React.SVGProps<SVGSVGElement> {
16676
+ size?: number | string;
16677
+ }
16678
+ /**
16679
+ * MagickoTicketExpired icon component
16680
+ * @example
16681
+ * ```tsx
16682
+ * import { MagickoTicketExpired } from 'magick-icons';
16683
+ *
16684
+ * <MagickoTicketExpired size={24} className="text-blue-500" strokeWidth={2} />
16685
+ * ```
16686
+ */
16687
+ declare const MagickoTicketExpired: React.ForwardRefExoticComponent<Omit<MagickoTicketExpiredProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16688
+
16689
+ /**
16690
+ * Props for the MagickoTicketStar icon component
16691
+ * @property {number | string} [size] - Size of the icon (default: 24)
16692
+ */
16693
+ interface MagickoTicketStarProps extends React.SVGProps<SVGSVGElement> {
16694
+ size?: number | string;
16695
+ }
16696
+ /**
16697
+ * MagickoTicketStar icon component
16698
+ * @example
16699
+ * ```tsx
16700
+ * import { MagickoTicketStar } from 'magick-icons';
16701
+ *
16702
+ * <MagickoTicketStar size={24} className="text-blue-500" strokeWidth={2} />
16703
+ * ```
16704
+ */
16705
+ declare const MagickoTicketStar: React.ForwardRefExoticComponent<Omit<MagickoTicketStarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16706
+
16707
+ /**
16708
+ * Props for the MagickoTimer icon component
16709
+ * @property {number | string} [size] - Size of the icon (default: 24)
16710
+ */
16711
+ interface MagickoTimerProps extends React.SVGProps<SVGSVGElement> {
16712
+ size?: number | string;
16713
+ }
16714
+ /**
16715
+ * MagickoTimer icon component
16716
+ * @example
16717
+ * ```tsx
16718
+ * import { MagickoTimer } from 'magick-icons';
16719
+ *
16720
+ * <MagickoTimer size={24} className="text-blue-500" strokeWidth={2} />
16721
+ * ```
16722
+ */
16723
+ declare const MagickoTimer: React.ForwardRefExoticComponent<Omit<MagickoTimerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16724
+
16725
+ /**
16726
+ * Props for the MagickoToLeftArrow icon component
16727
+ * @property {number | string} [size] - Size of the icon (default: 24)
16728
+ */
16729
+ interface MagickoToLeftArrowProps extends React.SVGProps<SVGSVGElement> {
16730
+ size?: number | string;
16731
+ }
16732
+ /**
16733
+ * MagickoToLeftArrow icon component
16734
+ * @example
16735
+ * ```tsx
16736
+ * import { MagickoToLeftArrow } from 'magick-icons';
16737
+ *
16738
+ * <MagickoToLeftArrow size={24} className="text-blue-500" strokeWidth={2} />
16739
+ * ```
16740
+ */
16741
+ declare const MagickoToLeftArrow: React.ForwardRefExoticComponent<Omit<MagickoToLeftArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16742
+
16743
+ /**
16744
+ * Props for the MagickoToRightArrow icon component
16745
+ * @property {number | string} [size] - Size of the icon (default: 24)
16746
+ */
16747
+ interface MagickoToRightArrowProps extends React.SVGProps<SVGSVGElement> {
16748
+ size?: number | string;
16749
+ }
16750
+ /**
16751
+ * MagickoToRightArrow icon component
16752
+ * @example
16753
+ * ```tsx
16754
+ * import { MagickoToRightArrow } from 'magick-icons';
16755
+ *
16756
+ * <MagickoToRightArrow size={24} className="text-blue-500" strokeWidth={2} />
16757
+ * ```
16758
+ */
16759
+ declare const MagickoToRightArrow: React.ForwardRefExoticComponent<Omit<MagickoToRightArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16760
+
16761
+ /**
16762
+ * Props for the MagickoToleft icon component
16763
+ * @property {number | string} [size] - Size of the icon (default: 24)
16764
+ */
16765
+ interface MagickoToleftProps extends React.SVGProps<SVGSVGElement> {
16766
+ size?: number | string;
16767
+ }
16768
+ /**
16769
+ * MagickoToleft icon component
16770
+ * @example
16771
+ * ```tsx
16772
+ * import { MagickoToleft } from 'magick-icons';
16773
+ *
16774
+ * <MagickoToleft size={24} className="text-blue-500" strokeWidth={2} />
16775
+ * ```
16776
+ */
16777
+ declare const MagickoToleft: React.ForwardRefExoticComponent<Omit<MagickoToleftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16778
+
16779
+ /**
16780
+ * Props for the MagickoTone icon component
16781
+ * @property {number | string} [size] - Size of the icon (default: 24)
16782
+ */
16783
+ interface MagickoToneProps extends React.SVGProps<SVGSVGElement> {
16784
+ size?: number | string;
16785
+ }
16786
+ /**
16787
+ * MagickoTone icon component
16788
+ * @example
16789
+ * ```tsx
16790
+ * import { MagickoTone } from 'magick-icons';
16791
+ *
16792
+ * <MagickoTone size={24} className="text-blue-500" strokeWidth={2} />
16793
+ * ```
16794
+ */
16795
+ declare const MagickoTone: React.ForwardRefExoticComponent<Omit<MagickoToneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16796
+
16797
+ /**
16798
+ * Props for the MagickoTongueClosedEyes icon component
16799
+ * @property {number | string} [size] - Size of the icon (default: 24)
16800
+ */
16801
+ interface MagickoTongueClosedEyesProps extends React.SVGProps<SVGSVGElement> {
16802
+ size?: number | string;
16803
+ }
16804
+ /**
16805
+ * MagickoTongueClosedEyes icon component
16806
+ * @example
16807
+ * ```tsx
16808
+ * import { MagickoTongueClosedEyes } from 'magick-icons';
16809
+ *
16810
+ * <MagickoTongueClosedEyes size={24} className="text-blue-500" strokeWidth={2} />
16811
+ * ```
16812
+ */
16813
+ declare const MagickoTongueClosedEyes: React.ForwardRefExoticComponent<Omit<MagickoTongueClosedEyesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16814
+
16815
+ /**
16816
+ * Props for the MagickoTopBottomGrid icon component
16817
+ * @property {number | string} [size] - Size of the icon (default: 24)
16818
+ */
16819
+ interface MagickoTopBottomGridProps extends React.SVGProps<SVGSVGElement> {
16820
+ size?: number | string;
16821
+ }
16822
+ /**
16823
+ * MagickoTopBottomGrid icon component
16824
+ * @example
16825
+ * ```tsx
16826
+ * import { MagickoTopBottomGrid } from 'magick-icons';
16827
+ *
16828
+ * <MagickoTopBottomGrid size={24} className="text-blue-500" strokeWidth={2} />
16829
+ * ```
16830
+ */
16831
+ declare const MagickoTopBottomGrid: React.ForwardRefExoticComponent<Omit<MagickoTopBottomGridProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16832
+
16833
+ /**
16834
+ * Props for the MagickoToright icon component
16835
+ * @property {number | string} [size] - Size of the icon (default: 24)
16836
+ */
16837
+ interface MagickoTorightProps extends React.SVGProps<SVGSVGElement> {
16838
+ size?: number | string;
16839
+ }
16840
+ /**
16841
+ * MagickoToright icon component
16842
+ * @example
16843
+ * ```tsx
16844
+ * import { MagickoToright } from 'magick-icons';
16845
+ *
16846
+ * <MagickoToright size={24} className="text-blue-500" strokeWidth={2} />
16847
+ * ```
16848
+ */
16849
+ declare const MagickoToright: React.ForwardRefExoticComponent<Omit<MagickoTorightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16850
+
16851
+ /**
16852
+ * Props for the MagickoTouchFinger icon component
16853
+ * @property {number | string} [size] - Size of the icon (default: 24)
16854
+ */
16855
+ interface MagickoTouchFingerProps extends React.SVGProps<SVGSVGElement> {
16856
+ size?: number | string;
16857
+ }
16858
+ /**
16859
+ * MagickoTouchFinger icon component
16860
+ * @example
16861
+ * ```tsx
16862
+ * import { MagickoTouchFinger } from 'magick-icons';
16863
+ *
16864
+ * <MagickoTouchFinger size={24} className="text-blue-500" strokeWidth={2} />
16865
+ * ```
16866
+ */
16867
+ declare const MagickoTouchFinger: React.ForwardRefExoticComponent<Omit<MagickoTouchFingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16868
+
16869
+ /**
16870
+ * Props for the MagickoTouchIdFinger icon component
16871
+ * @property {number | string} [size] - Size of the icon (default: 24)
16872
+ */
16873
+ interface MagickoTouchIdFingerProps extends React.SVGProps<SVGSVGElement> {
16874
+ size?: number | string;
16875
+ }
16876
+ /**
16877
+ * MagickoTouchIdFinger icon component
16878
+ * @example
16879
+ * ```tsx
16880
+ * import { MagickoTouchIdFinger } from 'magick-icons';
16881
+ *
16882
+ * <MagickoTouchIdFinger size={24} className="text-blue-500" strokeWidth={2} />
16883
+ * ```
16884
+ */
16885
+ declare const MagickoTouchIdFinger: React.ForwardRefExoticComponent<Omit<MagickoTouchIdFingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16886
+
16887
+ /**
16888
+ * Props for the MagickoTrade1 icon component
16889
+ * @property {number | string} [size] - Size of the icon (default: 24)
16890
+ */
16891
+ interface MagickoTrade1Props extends React.SVGProps<SVGSVGElement> {
16892
+ size?: number | string;
16893
+ }
16894
+ /**
16895
+ * MagickoTrade1 icon component
16896
+ * @example
16897
+ * ```tsx
16898
+ * import { MagickoTrade1 } from 'magick-icons';
16899
+ *
16900
+ * <MagickoTrade1 size={24} className="text-blue-500" strokeWidth={2} />
16901
+ * ```
16902
+ */
16903
+ declare const MagickoTrade1: React.ForwardRefExoticComponent<Omit<MagickoTrade1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16904
+
16905
+ /**
16906
+ * Props for the MagickoTransactionArrows icon component
16907
+ * @property {number | string} [size] - Size of the icon (default: 24)
16908
+ */
16909
+ interface MagickoTransactionArrowsProps extends React.SVGProps<SVGSVGElement> {
16910
+ size?: number | string;
16911
+ }
16912
+ /**
16913
+ * MagickoTransactionArrows icon component
16914
+ * @example
16915
+ * ```tsx
16916
+ * import { MagickoTransactionArrows } from 'magick-icons';
16917
+ *
16918
+ * <MagickoTransactionArrows size={24} className="text-blue-500" strokeWidth={2} />
16919
+ * ```
16920
+ */
16921
+ declare const MagickoTransactionArrows: React.ForwardRefExoticComponent<Omit<MagickoTransactionArrowsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16922
+
16923
+ /**
16924
+ * Props for the MagickoTransactionMinus icon component
16925
+ * @property {number | string} [size] - Size of the icon (default: 24)
16926
+ */
16927
+ interface MagickoTransactionMinusProps extends React.SVGProps<SVGSVGElement> {
16928
+ size?: number | string;
16929
+ }
16930
+ /**
16931
+ * MagickoTransactionMinus icon component
16932
+ * @example
16933
+ * ```tsx
16934
+ * import { MagickoTransactionMinus } from 'magick-icons';
16935
+ *
16936
+ * <MagickoTransactionMinus size={24} className="text-blue-500" strokeWidth={2} />
16937
+ * ```
16938
+ */
16939
+ declare const MagickoTransactionMinus: React.ForwardRefExoticComponent<Omit<MagickoTransactionMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16940
+
16941
+ /**
16942
+ * Props for the MagickoTranslate icon component
16943
+ * @property {number | string} [size] - Size of the icon (default: 24)
16944
+ */
16945
+ interface MagickoTranslateProps extends React.SVGProps<SVGSVGElement> {
16946
+ size?: number | string;
16947
+ }
16948
+ /**
16949
+ * MagickoTranslate icon component
16950
+ * @example
16951
+ * ```tsx
16952
+ * import { MagickoTranslate } from 'magick-icons';
16953
+ *
16954
+ * <MagickoTranslate size={24} className="text-blue-500" strokeWidth={2} />
16955
+ * ```
16956
+ */
16957
+ declare const MagickoTranslate: React.ForwardRefExoticComponent<Omit<MagickoTranslateProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16958
+
16959
+ /**
16960
+ * Props for the MagickoTranslate1 icon component
16961
+ * @property {number | string} [size] - Size of the icon (default: 24)
16962
+ */
16963
+ interface MagickoTranslate1Props extends React.SVGProps<SVGSVGElement> {
16964
+ size?: number | string;
16965
+ }
16966
+ /**
16967
+ * MagickoTranslate1 icon component
16968
+ * @example
16969
+ * ```tsx
16970
+ * import { MagickoTranslate1 } from 'magick-icons';
16971
+ *
16972
+ * <MagickoTranslate1 size={24} className="text-blue-500" strokeWidth={2} />
16973
+ * ```
16974
+ */
16975
+ declare const MagickoTranslate1: React.ForwardRefExoticComponent<Omit<MagickoTranslate1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16976
+
16977
+ /**
16978
+ * Props for the MagickoTranslate2 icon component
16979
+ * @property {number | string} [size] - Size of the icon (default: 24)
16980
+ */
16981
+ interface MagickoTranslate2Props extends React.SVGProps<SVGSVGElement> {
16982
+ size?: number | string;
16983
+ }
16984
+ /**
16985
+ * MagickoTranslate2 icon component
16986
+ * @example
16987
+ * ```tsx
16988
+ * import { MagickoTranslate2 } from 'magick-icons';
16989
+ *
16990
+ * <MagickoTranslate2 size={24} className="text-blue-500" strokeWidth={2} />
16991
+ * ```
16992
+ */
16993
+ declare const MagickoTranslate2: React.ForwardRefExoticComponent<Omit<MagickoTranslate2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16994
+
16995
+ /**
16996
+ * Props for the MagickoTrash icon component
16997
+ * @property {number | string} [size] - Size of the icon (default: 24)
16998
+ */
16999
+ interface MagickoTrashProps extends React.SVGProps<SVGSVGElement> {
17000
+ size?: number | string;
17001
+ }
17002
+ /**
17003
+ * MagickoTrash icon component
17004
+ * @example
17005
+ * ```tsx
17006
+ * import { MagickoTrash } from 'magick-icons';
17007
+ *
17008
+ * <MagickoTrash size={24} className="text-blue-500" strokeWidth={2} />
17009
+ * ```
17010
+ */
17011
+ declare const MagickoTrash: React.ForwardRefExoticComponent<Omit<MagickoTrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17012
+
17013
+ /**
17014
+ * Props for the MagickoTrendDown icon component
17015
+ * @property {number | string} [size] - Size of the icon (default: 24)
17016
+ */
17017
+ interface MagickoTrendDownProps extends React.SVGProps<SVGSVGElement> {
17018
+ size?: number | string;
17019
+ }
17020
+ /**
17021
+ * MagickoTrendDown icon component
17022
+ * @example
17023
+ * ```tsx
17024
+ * import { MagickoTrendDown } from 'magick-icons';
17025
+ *
17026
+ * <MagickoTrendDown size={24} className="text-blue-500" strokeWidth={2} />
17027
+ * ```
17028
+ */
17029
+ declare const MagickoTrendDown: React.ForwardRefExoticComponent<Omit<MagickoTrendDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17030
+
17031
+ /**
17032
+ * Props for the MagickoTrendUp icon component
17033
+ * @property {number | string} [size] - Size of the icon (default: 24)
17034
+ */
17035
+ interface MagickoTrendUpProps extends React.SVGProps<SVGSVGElement> {
17036
+ size?: number | string;
17037
+ }
17038
+ /**
17039
+ * MagickoTrendUp icon component
17040
+ * @example
17041
+ * ```tsx
17042
+ * import { MagickoTrendUp } from 'magick-icons';
17043
+ *
17044
+ * <MagickoTrendUp size={24} className="text-blue-500" strokeWidth={2} />
17045
+ * ```
17046
+ */
17047
+ declare const MagickoTrendUp: React.ForwardRefExoticComponent<Omit<MagickoTrendUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17048
+
17049
+ /**
17050
+ * Props for the MagickoUndoArrow icon component
17051
+ * @property {number | string} [size] - Size of the icon (default: 24)
17052
+ */
17053
+ interface MagickoUndoArrowProps extends React.SVGProps<SVGSVGElement> {
17054
+ size?: number | string;
17055
+ }
17056
+ /**
17057
+ * MagickoUndoArrow icon component
17058
+ * @example
17059
+ * ```tsx
17060
+ * import { MagickoUndoArrow } from 'magick-icons';
17061
+ *
17062
+ * <MagickoUndoArrow size={24} className="text-blue-500" strokeWidth={2} />
17063
+ * ```
17064
+ */
17065
+ declare const MagickoUndoArrow: React.ForwardRefExoticComponent<Omit<MagickoUndoArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17066
+
17067
+ /**
17068
+ * Props for the MagickoUnlimited icon component
17069
+ * @property {number | string} [size] - Size of the icon (default: 24)
17070
+ */
17071
+ interface MagickoUnlimitedProps extends React.SVGProps<SVGSVGElement> {
17072
+ size?: number | string;
17073
+ }
17074
+ /**
17075
+ * MagickoUnlimited icon component
17076
+ * @example
17077
+ * ```tsx
17078
+ * import { MagickoUnlimited } from 'magick-icons';
17079
+ *
17080
+ * <MagickoUnlimited size={24} className="text-blue-500" strokeWidth={2} />
17081
+ * ```
17082
+ */
17083
+ declare const MagickoUnlimited: React.ForwardRefExoticComponent<Omit<MagickoUnlimitedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17084
+
17085
+ /**
17086
+ * Props for the MagickoUploadArrow icon component
17087
+ * @property {number | string} [size] - Size of the icon (default: 24)
17088
+ */
17089
+ interface MagickoUploadArrowProps extends React.SVGProps<SVGSVGElement> {
17090
+ size?: number | string;
17091
+ }
17092
+ /**
17093
+ * MagickoUploadArrow icon component
17094
+ * @example
17095
+ * ```tsx
17096
+ * import { MagickoUploadArrow } from 'magick-icons';
17097
+ *
17098
+ * <MagickoUploadArrow size={24} className="text-blue-500" strokeWidth={2} />
17099
+ * ```
17100
+ */
17101
+ declare const MagickoUploadArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17102
+
17103
+ /**
17104
+ * Props for the MagickoUploadHorizontalArrow icon component
17105
+ * @property {number | string} [size] - Size of the icon (default: 24)
17106
+ */
17107
+ interface MagickoUploadHorizontalArrowProps extends React.SVGProps<SVGSVGElement> {
17108
+ size?: number | string;
17109
+ }
17110
+ /**
17111
+ * MagickoUploadHorizontalArrow icon component
17112
+ * @example
17113
+ * ```tsx
17114
+ * import { MagickoUploadHorizontalArrow } from 'magick-icons';
17115
+ *
17116
+ * <MagickoUploadHorizontalArrow size={24} className="text-blue-500" strokeWidth={2} />
17117
+ * ```
17118
+ */
17119
+ declare const MagickoUploadHorizontalArrow: React.ForwardRefExoticComponent<Omit<MagickoUploadHorizontalArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17120
+
17121
+ /**
17122
+ * Props for the MagickoUpsideDownFace icon component
17123
+ * @property {number | string} [size] - Size of the icon (default: 24)
17124
+ */
17125
+ interface MagickoUpsideDownFaceProps extends React.SVGProps<SVGSVGElement> {
17126
+ size?: number | string;
17127
+ }
17128
+ /**
17129
+ * MagickoUpsideDownFace icon component
17130
+ * @example
17131
+ * ```tsx
17132
+ * import { MagickoUpsideDownFace } from 'magick-icons';
17133
+ *
17134
+ * <MagickoUpsideDownFace size={24} className="text-blue-500" strokeWidth={2} />
17135
+ * ```
17136
+ */
17137
+ declare const MagickoUpsideDownFace: React.ForwardRefExoticComponent<Omit<MagickoUpsideDownFaceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17138
+
17139
+ /**
17140
+ * Props for the MagickoUser icon component
17141
+ * @property {number | string} [size] - Size of the icon (default: 24)
17142
+ */
17143
+ interface MagickoUserProps extends React.SVGProps<SVGSVGElement> {
17144
+ size?: number | string;
17145
+ }
17146
+ /**
17147
+ * MagickoUser icon component
17148
+ * @example
17149
+ * ```tsx
17150
+ * import { MagickoUser } from 'magick-icons';
17151
+ *
17152
+ * <MagickoUser size={24} className="text-blue-500" strokeWidth={2} />
17153
+ * ```
17154
+ */
17155
+ declare const MagickoUser: React.ForwardRefExoticComponent<Omit<MagickoUserProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17156
+
17157
+ /**
17158
+ * Props for the MagickoVIPCloud icon component
17159
+ * @property {number | string} [size] - Size of the icon (default: 24)
17160
+ */
17161
+ interface MagickoVIPCloudProps extends React.SVGProps<SVGSVGElement> {
17162
+ size?: number | string;
17163
+ }
17164
+ /**
17165
+ * MagickoVIPCloud icon component
17166
+ * @example
17167
+ * ```tsx
17168
+ * import { MagickoVIPCloud } from 'magick-icons';
17169
+ *
17170
+ * <MagickoVIPCloud size={24} className="text-blue-500" strokeWidth={2} />
17171
+ * ```
17172
+ */
17173
+ declare const MagickoVIPCloud: React.ForwardRefExoticComponent<Omit<MagickoVIPCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17174
+
17175
+ /**
17176
+ * Props for the MagickoVerify icon component
17177
+ * @property {number | string} [size] - Size of the icon (default: 24)
17178
+ */
17179
+ interface MagickoVerifyProps extends React.SVGProps<SVGSVGElement> {
17180
+ size?: number | string;
17181
+ }
17182
+ /**
17183
+ * MagickoVerify icon component
17184
+ * @example
17185
+ * ```tsx
17186
+ * import { MagickoVerify } from 'magick-icons';
17187
+ *
17188
+ * <MagickoVerify size={24} className="text-blue-500" strokeWidth={2} />
17189
+ * ```
17190
+ */
17191
+ declare const MagickoVerify: React.ForwardRefExoticComponent<Omit<MagickoVerifyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
17192
+
16113
17193
  /**
16114
17194
  * Props for the Marketing icon component
16115
17195
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -16398,4 +17478,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
16398
17478
  */
16399
17479
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
16400
17480
 
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 };
17481
+ export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, MagickoMicrophone211, type MagickoMicrophone211Props, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, MagickoReceipt211, type MagickoReceipt211Props, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight, MagickoRotateRight1, type MagickoRotateRight1Props, type MagickoRotateRightProps, MagickoRowHorizontal, type MagickoRowHorizontalProps, MagickoRowVertical, type MagickoRowVerticalProps, MagickoSad3, type MagickoSad3Props, MagickoSadFace, type MagickoSadFaceProps, MagickoSagittarius, type MagickoSagittariusProps, MagickoSatisfied, type MagickoSatisfiedProps, MagickoSave2, type MagickoSave2Props, MagickoSaveAdd, type MagickoSaveAddProps, MagickoSaveMinus, type MagickoSaveMinusProps, MagickoSaveRemove, type MagickoSaveRemoveProps, MagickoScheduled1, type MagickoScheduled1Props, MagickoScreenmirroring, type MagickoScreenmirroringProps, MagickoScroll01, type MagickoScroll01Props, MagickoScroll02, type MagickoScroll02Props, MagickoScrollfinger, type MagickoScrollfingerProps, MagickoSearch, MagickoSearchCloud, type MagickoSearchCloudProps, type MagickoSearchProps, MagickoSearchZoomIn1, type MagickoSearchZoomIn1Props, MagickoSearchZoomOut1, type MagickoSearchZoomOut1Props, MagickoSecurity, type MagickoSecurityProps, MagickoSecuritySafe, type MagickoSecuritySafeProps, MagickoSecurityUser, type MagickoSecurityUserProps, MagickoSend, MagickoSend1, type MagickoSend1Props, MagickoSend2, MagickoSend21, type MagickoSend21Props, type MagickoSend2Props, MagickoSendCloud, type MagickoSendCloudProps, type MagickoSendProps, MagickoSendReceiveCloud, type MagickoSendReceiveCloudProps, MagickoSendSquare01, type MagickoSendSquare01Props, MagickoSendSquare02, type MagickoSendSquare02Props, MagickoSetting2, type MagickoSetting2Props, MagickoSetting3, type MagickoSetting3Props, MagickoSetting4, type MagickoSetting4Props, MagickoSetting5, type MagickoSetting5Props, MagickoSettings, MagickoSettings1, type MagickoSettings1Props, type MagickoSettingsProps, MagickoShare, type MagickoShareProps, MagickoShiningHeart, type MagickoShiningHeartProps, MagickoShip, type MagickoShipProps, MagickoShop, MagickoShop1, type MagickoShop1Props, type MagickoShopProps, MagickoShoppingBag, type MagickoShoppingBagProps, MagickoShoppingCart, type MagickoShoppingCartProps, MagickoShuffle, type MagickoShuffleProps, MagickoSidebarBottom, type MagickoSidebarBottomProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSidebarRight, type MagickoSidebarRightProps, MagickoSidebarTop, type MagickoSidebarTopProps, MagickoSignedCloud, type MagickoSignedCloudProps, MagickoSimcard, MagickoSimcard1, type MagickoSimcard1Props, MagickoSimcard2, type MagickoSimcard2Props, type MagickoSimcardProps, MagickoSlash, type MagickoSlashProps, MagickoSleepZzz, type MagickoSleepZzzProps, MagickoSmallcaps, type MagickoSmallcapsProps, MagickoSmartBag, type MagickoSmartBagProps, MagickoSmartCar, type MagickoSmartCarProps, MagickoSmartCursor, type MagickoSmartCursorProps, MagickoSmartLockAi, type MagickoSmartLockAiProps, MagickoSmile, type MagickoSmileProps, MagickoSmileys, type MagickoSmileysProps, MagickoSmilingWithHeart, type MagickoSmilingWithHeartProps, MagickoSms, MagickoSmsNotification, type MagickoSmsNotificationProps, type MagickoSmsProps, MagickoSnowflake, type MagickoSnowflakeProps, MagickoSort, MagickoSortAdd, type MagickoSortAddProps, MagickoSortAscending, type MagickoSortAscendingProps, MagickoSortCheck, type MagickoSortCheckProps, MagickoSortDescending, type MagickoSortDescendingProps, type MagickoSortProps, MagickoSortRemove, type MagickoSortRemoveProps, MagickoSound, MagickoSound1, type MagickoSound1Props, type MagickoSoundProps, MagickoSpeaker, MagickoSpeaker1, type MagickoSpeaker1Props, type MagickoSpeakerProps, MagickoSquarefinger, type MagickoSquarefingerProps, MagickoStar, type MagickoStarProps, MagickoStarSlash, type MagickoStarSlashProps, MagickoStars, MagickoStars1, type MagickoStars1Props, type MagickoStarsProps, MagickoStatusUp, type MagickoStatusUpProps, MagickoSticker, type MagickoStickerProps, MagickoStickynote, type MagickoStickynoteProps, MagickoStop, type MagickoStopProps, MagickoStory, type MagickoStoryProps, MagickoSubtitle, type MagickoSubtitleProps, MagickoSun, MagickoSun1, type MagickoSun1Props, MagickoSunFog, type MagickoSunFogProps, type MagickoSunProps, MagickoSupport, MagickoSupport1, type MagickoSupport1Props, type MagickoSupportProps, MagickoSwapHorizontal01, type MagickoSwapHorizontal01Props, MagickoSwapHorizontal02, type MagickoSwapHorizontal02Props, MagickoSwapHorizontal03, type MagickoSwapHorizontal03Props, MagickoSweatSmile, type MagickoSweatSmileProps, MagickoTag, MagickoTag2, type MagickoTag2Props, MagickoTagCross, type MagickoTagCrossProps, type MagickoTagProps, MagickoTagUser, type MagickoTagUserProps, MagickoTask, type MagickoTaskProps, MagickoTaskSquare, type MagickoTaskSquareProps, MagickoTeacher, type MagickoTeacherProps, MagickoTelescope, MagickoTelescope1, type MagickoTelescope1Props, type MagickoTelescopeProps, MagickoText, MagickoTextBold, type MagickoTextBoldProps, MagickoTextItalic, type MagickoTextItalicProps, type MagickoTextProps, MagickoTextUnderline, type MagickoTextUnderlineProps, MagickoTextalignCenter, type MagickoTextalignCenterProps, MagickoTextalignJustifycenter, type MagickoTextalignJustifycenterProps, MagickoTextalignJustifyleft, type MagickoTextalignJustifyleftProps, MagickoTextalignJustifyright, type MagickoTextalignJustifyrightProps, MagickoTextalignLeft, type MagickoTextalignLeftProps, MagickoTextalignRight, type MagickoTextalignRightProps, MagickoTickCircle, type MagickoTickCircleProps, MagickoTickSquare, type MagickoTickSquareProps, MagickoTicket, MagickoTicket1, type MagickoTicket1Props, MagickoTicket2, type MagickoTicket2Props, MagickoTicketDiscount, type MagickoTicketDiscountProps, MagickoTicketExpired, type MagickoTicketExpiredProps, type MagickoTicketProps, MagickoTicketStar, type MagickoTicketStarProps, MagickoTimer, type MagickoTimerProps, MagickoToLeftArrow, type MagickoToLeftArrowProps, MagickoToRightArrow, type MagickoToRightArrowProps, MagickoToleft, type MagickoToleftProps, MagickoTone, type MagickoToneProps, MagickoTongueClosedEyes, type MagickoTongueClosedEyesProps, MagickoTopBottomGrid, type MagickoTopBottomGridProps, MagickoToright, type MagickoTorightProps, MagickoTouchFinger, type MagickoTouchFingerProps, MagickoTouchIdFinger, type MagickoTouchIdFingerProps, MagickoTrade1, type MagickoTrade1Props, MagickoTransactionArrows, type MagickoTransactionArrowsProps, MagickoTransactionMinus, type MagickoTransactionMinusProps, MagickoTranslate, MagickoTranslate1, type MagickoTranslate1Props, MagickoTranslate2, type MagickoTranslate2Props, type MagickoTranslateProps, MagickoTrash, type MagickoTrashProps, MagickoTrendDown, type MagickoTrendDownProps, MagickoTrendUp, type MagickoTrendUpProps, MagickoUndoArrow, type MagickoUndoArrowProps, MagickoUnlimited, type MagickoUnlimitedProps, MagickoUploadArrow, type MagickoUploadArrowProps, MagickoUploadHorizontalArrow, type MagickoUploadHorizontalArrowProps, MagickoUpsideDownFace, type MagickoUpsideDownFaceProps, MagickoUser, type MagickoUserProps, MagickoVIPCloud, type MagickoVIPCloudProps, MagickoVerify, type MagickoVerifyProps, 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 };