magick-icons 0.1.233 → 0.1.234

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
@@ -10170,6 +10170,546 @@ interface MagickoGrid5Props extends React.SVGProps<SVGSVGElement> {
10170
10170
  */
10171
10171
  declare const MagickoGrid5: React.ForwardRefExoticComponent<Omit<MagickoGrid5Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10172
10172
 
10173
+ /**
10174
+ * Props for the MagickoGrid6 icon component
10175
+ * @property {number | string} [size] - Size of the icon (default: 24)
10176
+ */
10177
+ interface MagickoGrid6Props extends React.SVGProps<SVGSVGElement> {
10178
+ size?: number | string;
10179
+ }
10180
+ /**
10181
+ * MagickoGrid6 icon component
10182
+ * @example
10183
+ * ```tsx
10184
+ * import { MagickoGrid6 } from 'magick-icons';
10185
+ *
10186
+ * <MagickoGrid6 size={24} className="text-blue-500" strokeWidth={2} />
10187
+ * ```
10188
+ */
10189
+ declare const MagickoGrid6: React.ForwardRefExoticComponent<Omit<MagickoGrid6Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10190
+
10191
+ /**
10192
+ * Props for the MagickoGrid7 icon component
10193
+ * @property {number | string} [size] - Size of the icon (default: 24)
10194
+ */
10195
+ interface MagickoGrid7Props extends React.SVGProps<SVGSVGElement> {
10196
+ size?: number | string;
10197
+ }
10198
+ /**
10199
+ * MagickoGrid7 icon component
10200
+ * @example
10201
+ * ```tsx
10202
+ * import { MagickoGrid7 } from 'magick-icons';
10203
+ *
10204
+ * <MagickoGrid7 size={24} className="text-blue-500" strokeWidth={2} />
10205
+ * ```
10206
+ */
10207
+ declare const MagickoGrid7: React.ForwardRefExoticComponent<Omit<MagickoGrid7Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10208
+
10209
+ /**
10210
+ * Props for the MagickoGrid8 icon component
10211
+ * @property {number | string} [size] - Size of the icon (default: 24)
10212
+ */
10213
+ interface MagickoGrid8Props extends React.SVGProps<SVGSVGElement> {
10214
+ size?: number | string;
10215
+ }
10216
+ /**
10217
+ * MagickoGrid8 icon component
10218
+ * @example
10219
+ * ```tsx
10220
+ * import { MagickoGrid8 } from 'magick-icons';
10221
+ *
10222
+ * <MagickoGrid8 size={24} className="text-blue-500" strokeWidth={2} />
10223
+ * ```
10224
+ */
10225
+ declare const MagickoGrid8: React.ForwardRefExoticComponent<Omit<MagickoGrid8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10226
+
10227
+ /**
10228
+ * Props for the MagickoGrid9 icon component
10229
+ * @property {number | string} [size] - Size of the icon (default: 24)
10230
+ */
10231
+ interface MagickoGrid9Props extends React.SVGProps<SVGSVGElement> {
10232
+ size?: number | string;
10233
+ }
10234
+ /**
10235
+ * MagickoGrid9 icon component
10236
+ * @example
10237
+ * ```tsx
10238
+ * import { MagickoGrid9 } from 'magick-icons';
10239
+ *
10240
+ * <MagickoGrid9 size={24} className="text-blue-500" strokeWidth={2} />
10241
+ * ```
10242
+ */
10243
+ declare const MagickoGrid9: React.ForwardRefExoticComponent<Omit<MagickoGrid9Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10244
+
10245
+ /**
10246
+ * Props for the MagickoGridAdd icon component
10247
+ * @property {number | string} [size] - Size of the icon (default: 24)
10248
+ */
10249
+ interface MagickoGridAddProps extends React.SVGProps<SVGSVGElement> {
10250
+ size?: number | string;
10251
+ }
10252
+ /**
10253
+ * MagickoGridAdd icon component
10254
+ * @example
10255
+ * ```tsx
10256
+ * import { MagickoGridAdd } from 'magick-icons';
10257
+ *
10258
+ * <MagickoGridAdd size={24} className="text-blue-500" strokeWidth={2} />
10259
+ * ```
10260
+ */
10261
+ declare const MagickoGridAdd: React.ForwardRefExoticComponent<Omit<MagickoGridAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10262
+
10263
+ /**
10264
+ * Props for the MagickoGridEqual icon component
10265
+ * @property {number | string} [size] - Size of the icon (default: 24)
10266
+ */
10267
+ interface MagickoGridEqualProps extends React.SVGProps<SVGSVGElement> {
10268
+ size?: number | string;
10269
+ }
10270
+ /**
10271
+ * MagickoGridEqual icon component
10272
+ * @example
10273
+ * ```tsx
10274
+ * import { MagickoGridEqual } from 'magick-icons';
10275
+ *
10276
+ * <MagickoGridEqual size={24} className="text-blue-500" strokeWidth={2} />
10277
+ * ```
10278
+ */
10279
+ declare const MagickoGridEqual: React.ForwardRefExoticComponent<Omit<MagickoGridEqualProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10280
+
10281
+ /**
10282
+ * Props for the MagickoGrids4 icon component
10283
+ * @property {number | string} [size] - Size of the icon (default: 24)
10284
+ */
10285
+ interface MagickoGrids4Props extends React.SVGProps<SVGSVGElement> {
10286
+ size?: number | string;
10287
+ }
10288
+ /**
10289
+ * MagickoGrids4 icon component
10290
+ * @example
10291
+ * ```tsx
10292
+ * import { MagickoGrids4 } from 'magick-icons';
10293
+ *
10294
+ * <MagickoGrids4 size={24} className="text-blue-500" strokeWidth={2} />
10295
+ * ```
10296
+ */
10297
+ declare const MagickoGrids4: React.ForwardRefExoticComponent<Omit<MagickoGrids4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10298
+
10299
+ /**
10300
+ * Props for the MagickoGrinning icon component
10301
+ * @property {number | string} [size] - Size of the icon (default: 24)
10302
+ */
10303
+ interface MagickoGrinningProps extends React.SVGProps<SVGSVGElement> {
10304
+ size?: number | string;
10305
+ }
10306
+ /**
10307
+ * MagickoGrinning icon component
10308
+ * @example
10309
+ * ```tsx
10310
+ * import { MagickoGrinning } from 'magick-icons';
10311
+ *
10312
+ * <MagickoGrinning size={24} className="text-blue-500" strokeWidth={2} />
10313
+ * ```
10314
+ */
10315
+ declare const MagickoGrinning: React.ForwardRefExoticComponent<Omit<MagickoGrinningProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10316
+
10317
+ /**
10318
+ * Props for the MagickoHandcircle icon component
10319
+ * @property {number | string} [size] - Size of the icon (default: 24)
10320
+ */
10321
+ interface MagickoHandcircleProps extends React.SVGProps<SVGSVGElement> {
10322
+ size?: number | string;
10323
+ }
10324
+ /**
10325
+ * MagickoHandcircle icon component
10326
+ * @example
10327
+ * ```tsx
10328
+ * import { MagickoHandcircle } from 'magick-icons';
10329
+ *
10330
+ * <MagickoHandcircle size={24} className="text-blue-500" strokeWidth={2} />
10331
+ * ```
10332
+ */
10333
+ declare const MagickoHandcircle: React.ForwardRefExoticComponent<Omit<MagickoHandcircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10334
+
10335
+ /**
10336
+ * Props for the MagickoHandtohand icon component
10337
+ * @property {number | string} [size] - Size of the icon (default: 24)
10338
+ */
10339
+ interface MagickoHandtohandProps extends React.SVGProps<SVGSVGElement> {
10340
+ size?: number | string;
10341
+ }
10342
+ /**
10343
+ * MagickoHandtohand icon component
10344
+ * @example
10345
+ * ```tsx
10346
+ * import { MagickoHandtohand } from 'magick-icons';
10347
+ *
10348
+ * <MagickoHandtohand size={24} className="text-blue-500" strokeWidth={2} />
10349
+ * ```
10350
+ */
10351
+ declare const MagickoHandtohand: React.ForwardRefExoticComponent<Omit<MagickoHandtohandProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10352
+
10353
+ /**
10354
+ * Props for the MagickoHappy icon component
10355
+ * @property {number | string} [size] - Size of the icon (default: 24)
10356
+ */
10357
+ interface MagickoHappyProps extends React.SVGProps<SVGSVGElement> {
10358
+ size?: number | string;
10359
+ }
10360
+ /**
10361
+ * MagickoHappy icon component
10362
+ * @example
10363
+ * ```tsx
10364
+ * import { MagickoHappy } from 'magick-icons';
10365
+ *
10366
+ * <MagickoHappy size={24} className="text-blue-500" strokeWidth={2} />
10367
+ * ```
10368
+ */
10369
+ declare const MagickoHappy: React.ForwardRefExoticComponent<Omit<MagickoHappyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10370
+
10371
+ /**
10372
+ * Props for the MagickoHappy1 icon component
10373
+ * @property {number | string} [size] - Size of the icon (default: 24)
10374
+ */
10375
+ interface MagickoHappy1Props extends React.SVGProps<SVGSVGElement> {
10376
+ size?: number | string;
10377
+ }
10378
+ /**
10379
+ * MagickoHappy1 icon component
10380
+ * @example
10381
+ * ```tsx
10382
+ * import { MagickoHappy1 } from 'magick-icons';
10383
+ *
10384
+ * <MagickoHappy1 size={24} className="text-blue-500" strokeWidth={2} />
10385
+ * ```
10386
+ */
10387
+ declare const MagickoHappy1: React.ForwardRefExoticComponent<Omit<MagickoHappy1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10388
+
10389
+ /**
10390
+ * Props for the MagickoHappyemoji icon component
10391
+ * @property {number | string} [size] - Size of the icon (default: 24)
10392
+ */
10393
+ interface MagickoHappyemojiProps extends React.SVGProps<SVGSVGElement> {
10394
+ size?: number | string;
10395
+ }
10396
+ /**
10397
+ * MagickoHappyemoji icon component
10398
+ * @example
10399
+ * ```tsx
10400
+ * import { MagickoHappyemoji } from 'magick-icons';
10401
+ *
10402
+ * <MagickoHappyemoji size={24} className="text-blue-500" strokeWidth={2} />
10403
+ * ```
10404
+ */
10405
+ declare const MagickoHappyemoji: React.ForwardRefExoticComponent<Omit<MagickoHappyemojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10406
+
10407
+ /**
10408
+ * Props for the MagickoHashtag icon component
10409
+ * @property {number | string} [size] - Size of the icon (default: 24)
10410
+ */
10411
+ interface MagickoHashtagProps extends React.SVGProps<SVGSVGElement> {
10412
+ size?: number | string;
10413
+ }
10414
+ /**
10415
+ * MagickoHashtag icon component
10416
+ * @example
10417
+ * ```tsx
10418
+ * import { MagickoHashtag } from 'magick-icons';
10419
+ *
10420
+ * <MagickoHashtag size={24} className="text-blue-500" strokeWidth={2} />
10421
+ * ```
10422
+ */
10423
+ declare const MagickoHashtag: React.ForwardRefExoticComponent<Omit<MagickoHashtagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10424
+
10425
+ /**
10426
+ * Props for the MagickoHashtag1 icon component
10427
+ * @property {number | string} [size] - Size of the icon (default: 24)
10428
+ */
10429
+ interface MagickoHashtag1Props extends React.SVGProps<SVGSVGElement> {
10430
+ size?: number | string;
10431
+ }
10432
+ /**
10433
+ * MagickoHashtag1 icon component
10434
+ * @example
10435
+ * ```tsx
10436
+ * import { MagickoHashtag1 } from 'magick-icons';
10437
+ *
10438
+ * <MagickoHashtag1 size={24} className="text-blue-500" strokeWidth={2} />
10439
+ * ```
10440
+ */
10441
+ declare const MagickoHashtag1: React.ForwardRefExoticComponent<Omit<MagickoHashtag1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10442
+
10443
+ /**
10444
+ * Props for the MagickoHeadphone icon component
10445
+ * @property {number | string} [size] - Size of the icon (default: 24)
10446
+ */
10447
+ interface MagickoHeadphoneProps extends React.SVGProps<SVGSVGElement> {
10448
+ size?: number | string;
10449
+ }
10450
+ /**
10451
+ * MagickoHeadphone icon component
10452
+ * @example
10453
+ * ```tsx
10454
+ * import { MagickoHeadphone } from 'magick-icons';
10455
+ *
10456
+ * <MagickoHeadphone size={24} className="text-blue-500" strokeWidth={2} />
10457
+ * ```
10458
+ */
10459
+ declare const MagickoHeadphone: React.ForwardRefExoticComponent<Omit<MagickoHeadphoneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10460
+
10461
+ /**
10462
+ * Props for the MagickoHeadphones icon component
10463
+ * @property {number | string} [size] - Size of the icon (default: 24)
10464
+ */
10465
+ interface MagickoHeadphonesProps extends React.SVGProps<SVGSVGElement> {
10466
+ size?: number | string;
10467
+ }
10468
+ /**
10469
+ * MagickoHeadphones icon component
10470
+ * @example
10471
+ * ```tsx
10472
+ * import { MagickoHeadphones } from 'magick-icons';
10473
+ *
10474
+ * <MagickoHeadphones size={24} className="text-blue-500" strokeWidth={2} />
10475
+ * ```
10476
+ */
10477
+ declare const MagickoHeadphones: React.ForwardRefExoticComponent<Omit<MagickoHeadphonesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10478
+
10479
+ /**
10480
+ * Props for the MagickoHealth icon component
10481
+ * @property {number | string} [size] - Size of the icon (default: 24)
10482
+ */
10483
+ interface MagickoHealthProps extends React.SVGProps<SVGSVGElement> {
10484
+ size?: number | string;
10485
+ }
10486
+ /**
10487
+ * MagickoHealth icon component
10488
+ * @example
10489
+ * ```tsx
10490
+ * import { MagickoHealth } from 'magick-icons';
10491
+ *
10492
+ * <MagickoHealth size={24} className="text-blue-500" strokeWidth={2} />
10493
+ * ```
10494
+ */
10495
+ declare const MagickoHealth: React.ForwardRefExoticComponent<Omit<MagickoHealthProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10496
+
10497
+ /**
10498
+ * Props for the MagickoHealth1 icon component
10499
+ * @property {number | string} [size] - Size of the icon (default: 24)
10500
+ */
10501
+ interface MagickoHealth1Props extends React.SVGProps<SVGSVGElement> {
10502
+ size?: number | string;
10503
+ }
10504
+ /**
10505
+ * MagickoHealth1 icon component
10506
+ * @example
10507
+ * ```tsx
10508
+ * import { MagickoHealth1 } from 'magick-icons';
10509
+ *
10510
+ * <MagickoHealth1 size={24} className="text-blue-500" strokeWidth={2} />
10511
+ * ```
10512
+ */
10513
+ declare const MagickoHealth1: React.ForwardRefExoticComponent<Omit<MagickoHealth1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10514
+
10515
+ /**
10516
+ * Props for the MagickoHeart icon component
10517
+ * @property {number | string} [size] - Size of the icon (default: 24)
10518
+ */
10519
+ interface MagickoHeartProps extends React.SVGProps<SVGSVGElement> {
10520
+ size?: number | string;
10521
+ }
10522
+ /**
10523
+ * MagickoHeart icon component
10524
+ * @example
10525
+ * ```tsx
10526
+ * import { MagickoHeart } from 'magick-icons';
10527
+ *
10528
+ * <MagickoHeart size={24} className="text-blue-500" strokeWidth={2} />
10529
+ * ```
10530
+ */
10531
+ declare const MagickoHeart: React.ForwardRefExoticComponent<Omit<MagickoHeartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10532
+
10533
+ /**
10534
+ * Props for the MagickoHeart1 icon component
10535
+ * @property {number | string} [size] - Size of the icon (default: 24)
10536
+ */
10537
+ interface MagickoHeart1Props extends React.SVGProps<SVGSVGElement> {
10538
+ size?: number | string;
10539
+ }
10540
+ /**
10541
+ * MagickoHeart1 icon component
10542
+ * @example
10543
+ * ```tsx
10544
+ * import { MagickoHeart1 } from 'magick-icons';
10545
+ *
10546
+ * <MagickoHeart1 size={24} className="text-blue-500" strokeWidth={2} />
10547
+ * ```
10548
+ */
10549
+ declare const MagickoHeart1: React.ForwardRefExoticComponent<Omit<MagickoHeart1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10550
+
10551
+ /**
10552
+ * Props for the MagickoHeartTap icon component
10553
+ * @property {number | string} [size] - Size of the icon (default: 24)
10554
+ */
10555
+ interface MagickoHeartTapProps extends React.SVGProps<SVGSVGElement> {
10556
+ size?: number | string;
10557
+ }
10558
+ /**
10559
+ * MagickoHeartTap icon component
10560
+ * @example
10561
+ * ```tsx
10562
+ * import { MagickoHeartTap } from 'magick-icons';
10563
+ *
10564
+ * <MagickoHeartTap size={24} className="text-blue-500" strokeWidth={2} />
10565
+ * ```
10566
+ */
10567
+ declare const MagickoHeartTap: React.ForwardRefExoticComponent<Omit<MagickoHeartTapProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10568
+
10569
+ /**
10570
+ * Props for the MagickoHearted icon component
10571
+ * @property {number | string} [size] - Size of the icon (default: 24)
10572
+ */
10573
+ interface MagickoHeartedProps extends React.SVGProps<SVGSVGElement> {
10574
+ size?: number | string;
10575
+ }
10576
+ /**
10577
+ * MagickoHearted icon component
10578
+ * @example
10579
+ * ```tsx
10580
+ * import { MagickoHearted } from 'magick-icons';
10581
+ *
10582
+ * <MagickoHearted size={24} className="text-blue-500" strokeWidth={2} />
10583
+ * ```
10584
+ */
10585
+ declare const MagickoHearted: React.ForwardRefExoticComponent<Omit<MagickoHeartedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10586
+
10587
+ /**
10588
+ * Props for the MagickoHome icon component
10589
+ * @property {number | string} [size] - Size of the icon (default: 24)
10590
+ */
10591
+ interface MagickoHomeProps extends React.SVGProps<SVGSVGElement> {
10592
+ size?: number | string;
10593
+ }
10594
+ /**
10595
+ * MagickoHome icon component
10596
+ * @example
10597
+ * ```tsx
10598
+ * import { MagickoHome } from 'magick-icons';
10599
+ *
10600
+ * <MagickoHome size={24} className="text-blue-500" strokeWidth={2} />
10601
+ * ```
10602
+ */
10603
+ declare const MagickoHome: React.ForwardRefExoticComponent<Omit<MagickoHomeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10604
+
10605
+ /**
10606
+ * Props for the MagickoHome2 icon component
10607
+ * @property {number | string} [size] - Size of the icon (default: 24)
10608
+ */
10609
+ interface MagickoHome2Props extends React.SVGProps<SVGSVGElement> {
10610
+ size?: number | string;
10611
+ }
10612
+ /**
10613
+ * MagickoHome2 icon component
10614
+ * @example
10615
+ * ```tsx
10616
+ * import { MagickoHome2 } from 'magick-icons';
10617
+ *
10618
+ * <MagickoHome2 size={24} className="text-blue-500" strokeWidth={2} />
10619
+ * ```
10620
+ */
10621
+ declare const MagickoHome2: React.ForwardRefExoticComponent<Omit<MagickoHome2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10622
+
10623
+ /**
10624
+ * Props for the MagickoHome21 icon component
10625
+ * @property {number | string} [size] - Size of the icon (default: 24)
10626
+ */
10627
+ interface MagickoHome21Props extends React.SVGProps<SVGSVGElement> {
10628
+ size?: number | string;
10629
+ }
10630
+ /**
10631
+ * MagickoHome21 icon component
10632
+ * @example
10633
+ * ```tsx
10634
+ * import { MagickoHome21 } from 'magick-icons';
10635
+ *
10636
+ * <MagickoHome21 size={24} className="text-blue-500" strokeWidth={2} />
10637
+ * ```
10638
+ */
10639
+ declare const MagickoHome21: React.ForwardRefExoticComponent<Omit<MagickoHome21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10640
+
10641
+ /**
10642
+ * Props for the MagickoHomeHashtag icon component
10643
+ * @property {number | string} [size] - Size of the icon (default: 24)
10644
+ */
10645
+ interface MagickoHomeHashtagProps extends React.SVGProps<SVGSVGElement> {
10646
+ size?: number | string;
10647
+ }
10648
+ /**
10649
+ * MagickoHomeHashtag icon component
10650
+ * @example
10651
+ * ```tsx
10652
+ * import { MagickoHomeHashtag } from 'magick-icons';
10653
+ *
10654
+ * <MagickoHomeHashtag size={24} className="text-blue-500" strokeWidth={2} />
10655
+ * ```
10656
+ */
10657
+ declare const MagickoHomeHashtag: React.ForwardRefExoticComponent<Omit<MagickoHomeHashtagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10658
+
10659
+ /**
10660
+ * Props for the MagickoHomeTrendDown icon component
10661
+ * @property {number | string} [size] - Size of the icon (default: 24)
10662
+ */
10663
+ interface MagickoHomeTrendDownProps extends React.SVGProps<SVGSVGElement> {
10664
+ size?: number | string;
10665
+ }
10666
+ /**
10667
+ * MagickoHomeTrendDown icon component
10668
+ * @example
10669
+ * ```tsx
10670
+ * import { MagickoHomeTrendDown } from 'magick-icons';
10671
+ *
10672
+ * <MagickoHomeTrendDown size={24} className="text-blue-500" strokeWidth={2} />
10673
+ * ```
10674
+ */
10675
+ declare const MagickoHomeTrendDown: React.ForwardRefExoticComponent<Omit<MagickoHomeTrendDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10676
+
10677
+ /**
10678
+ * Props for the MagickoHomeTrendUp icon component
10679
+ * @property {number | string} [size] - Size of the icon (default: 24)
10680
+ */
10681
+ interface MagickoHomeTrendUpProps extends React.SVGProps<SVGSVGElement> {
10682
+ size?: number | string;
10683
+ }
10684
+ /**
10685
+ * MagickoHomeTrendUp icon component
10686
+ * @example
10687
+ * ```tsx
10688
+ * import { MagickoHomeTrendUp } from 'magick-icons';
10689
+ *
10690
+ * <MagickoHomeTrendUp size={24} className="text-blue-500" strokeWidth={2} />
10691
+ * ```
10692
+ */
10693
+ declare const MagickoHomeTrendUp: React.ForwardRefExoticComponent<Omit<MagickoHomeTrendUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10694
+
10695
+ /**
10696
+ * Props for the MagickoHospital1 icon component
10697
+ * @property {number | string} [size] - Size of the icon (default: 24)
10698
+ */
10699
+ interface MagickoHospital1Props extends React.SVGProps<SVGSVGElement> {
10700
+ size?: number | string;
10701
+ }
10702
+ /**
10703
+ * MagickoHospital1 icon component
10704
+ * @example
10705
+ * ```tsx
10706
+ * import { MagickoHospital1 } from 'magick-icons';
10707
+ *
10708
+ * <MagickoHospital1 size={24} className="text-blue-500" strokeWidth={2} />
10709
+ * ```
10710
+ */
10711
+ declare const MagickoHospital1: React.ForwardRefExoticComponent<Omit<MagickoHospital1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
10712
+
10173
10713
  /**
10174
10714
  * Props for the Marketing icon component
10175
10715
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -10458,4 +10998,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
10458
10998
  */
10459
10999
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
10460
11000
 
10461
- 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, 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 };
11001
+ 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, MagickoHospital1, type MagickoHospital1Props, 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 };