magick-icons 0.1.237 → 0.1.239

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
@@ -12312,6 +12312,24 @@ interface MagickoMirroringScreenProps extends React.SVGProps<SVGSVGElement> {
12312
12312
  */
12313
12313
  declare const MagickoMirroringScreen: React.ForwardRefExoticComponent<Omit<MagickoMirroringScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12314
12314
 
12315
+ /**
12316
+ * Props for the MagickoMobile icon component
12317
+ * @property {number | string} [size] - Size of the icon (default: 24)
12318
+ */
12319
+ interface MagickoMobileProps extends React.SVGProps<SVGSVGElement> {
12320
+ size?: number | string;
12321
+ }
12322
+ /**
12323
+ * MagickoMobile icon component
12324
+ * @example
12325
+ * ```tsx
12326
+ * import { MagickoMobile } from 'magick-icons';
12327
+ *
12328
+ * <MagickoMobile size={24} className="text-blue-500" strokeWidth={2} />
12329
+ * ```
12330
+ */
12331
+ declare const MagickoMobile: React.ForwardRefExoticComponent<Omit<MagickoMobileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12332
+
12315
12333
  /**
12316
12334
  * Props for the MagickoMobile1 icon component
12317
12335
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -12330,6 +12348,1068 @@ interface MagickoMobile1Props extends React.SVGProps<SVGSVGElement> {
12330
12348
  */
12331
12349
  declare const MagickoMobile1: React.ForwardRefExoticComponent<Omit<MagickoMobile1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12332
12350
 
12351
+ /**
12352
+ * Props for the MagickoMoney icon component
12353
+ * @property {number | string} [size] - Size of the icon (default: 24)
12354
+ */
12355
+ interface MagickoMoneyProps extends React.SVGProps<SVGSVGElement> {
12356
+ size?: number | string;
12357
+ }
12358
+ /**
12359
+ * MagickoMoney icon component
12360
+ * @example
12361
+ * ```tsx
12362
+ * import { MagickoMoney } from 'magick-icons';
12363
+ *
12364
+ * <MagickoMoney size={24} className="text-blue-500" strokeWidth={2} />
12365
+ * ```
12366
+ */
12367
+ declare const MagickoMoney: React.ForwardRefExoticComponent<Omit<MagickoMoneyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12368
+
12369
+ /**
12370
+ * Props for the MagickoMoney1 icon component
12371
+ * @property {number | string} [size] - Size of the icon (default: 24)
12372
+ */
12373
+ interface MagickoMoney1Props extends React.SVGProps<SVGSVGElement> {
12374
+ size?: number | string;
12375
+ }
12376
+ /**
12377
+ * MagickoMoney1 icon component
12378
+ * @example
12379
+ * ```tsx
12380
+ * import { MagickoMoney1 } from 'magick-icons';
12381
+ *
12382
+ * <MagickoMoney1 size={24} className="text-blue-500" strokeWidth={2} />
12383
+ * ```
12384
+ */
12385
+ declare const MagickoMoney1: React.ForwardRefExoticComponent<Omit<MagickoMoney1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12386
+
12387
+ /**
12388
+ * Props for the MagickoMoney2 icon component
12389
+ * @property {number | string} [size] - Size of the icon (default: 24)
12390
+ */
12391
+ interface MagickoMoney2Props extends React.SVGProps<SVGSVGElement> {
12392
+ size?: number | string;
12393
+ }
12394
+ /**
12395
+ * MagickoMoney2 icon component
12396
+ * @example
12397
+ * ```tsx
12398
+ * import { MagickoMoney2 } from 'magick-icons';
12399
+ *
12400
+ * <MagickoMoney2 size={24} className="text-blue-500" strokeWidth={2} />
12401
+ * ```
12402
+ */
12403
+ declare const MagickoMoney2: React.ForwardRefExoticComponent<Omit<MagickoMoney2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12404
+
12405
+ /**
12406
+ * Props for the MagickoMoney21 icon component
12407
+ * @property {number | string} [size] - Size of the icon (default: 24)
12408
+ */
12409
+ interface MagickoMoney21Props extends React.SVGProps<SVGSVGElement> {
12410
+ size?: number | string;
12411
+ }
12412
+ /**
12413
+ * MagickoMoney21 icon component
12414
+ * @example
12415
+ * ```tsx
12416
+ * import { MagickoMoney21 } from 'magick-icons';
12417
+ *
12418
+ * <MagickoMoney21 size={24} className="text-blue-500" strokeWidth={2} />
12419
+ * ```
12420
+ */
12421
+ declare const MagickoMoney21: React.ForwardRefExoticComponent<Omit<MagickoMoney21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12422
+
12423
+ /**
12424
+ * Props for the MagickoMoney3 icon component
12425
+ * @property {number | string} [size] - Size of the icon (default: 24)
12426
+ */
12427
+ interface MagickoMoney3Props extends React.SVGProps<SVGSVGElement> {
12428
+ size?: number | string;
12429
+ }
12430
+ /**
12431
+ * MagickoMoney3 icon component
12432
+ * @example
12433
+ * ```tsx
12434
+ * import { MagickoMoney3 } from 'magick-icons';
12435
+ *
12436
+ * <MagickoMoney3 size={24} className="text-blue-500" strokeWidth={2} />
12437
+ * ```
12438
+ */
12439
+ declare const MagickoMoney3: React.ForwardRefExoticComponent<Omit<MagickoMoney3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12440
+
12441
+ /**
12442
+ * Props for the MagickoMoney4 icon component
12443
+ * @property {number | string} [size] - Size of the icon (default: 24)
12444
+ */
12445
+ interface MagickoMoney4Props extends React.SVGProps<SVGSVGElement> {
12446
+ size?: number | string;
12447
+ }
12448
+ /**
12449
+ * MagickoMoney4 icon component
12450
+ * @example
12451
+ * ```tsx
12452
+ * import { MagickoMoney4 } from 'magick-icons';
12453
+ *
12454
+ * <MagickoMoney4 size={24} className="text-blue-500" strokeWidth={2} />
12455
+ * ```
12456
+ */
12457
+ declare const MagickoMoney4: React.ForwardRefExoticComponent<Omit<MagickoMoney4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12458
+
12459
+ /**
12460
+ * Props for the MagickoMoneys icon component
12461
+ * @property {number | string} [size] - Size of the icon (default: 24)
12462
+ */
12463
+ interface MagickoMoneysProps extends React.SVGProps<SVGSVGElement> {
12464
+ size?: number | string;
12465
+ }
12466
+ /**
12467
+ * MagickoMoneys icon component
12468
+ * @example
12469
+ * ```tsx
12470
+ * import { MagickoMoneys } from 'magick-icons';
12471
+ *
12472
+ * <MagickoMoneys size={24} className="text-blue-500" strokeWidth={2} />
12473
+ * ```
12474
+ */
12475
+ declare const MagickoMoneys: React.ForwardRefExoticComponent<Omit<MagickoMoneysProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12476
+
12477
+ /**
12478
+ * Props for the MagickoMonitor1 icon component
12479
+ * @property {number | string} [size] - Size of the icon (default: 24)
12480
+ */
12481
+ interface MagickoMonitor1Props extends React.SVGProps<SVGSVGElement> {
12482
+ size?: number | string;
12483
+ }
12484
+ /**
12485
+ * MagickoMonitor1 icon component
12486
+ * @example
12487
+ * ```tsx
12488
+ * import { MagickoMonitor1 } from 'magick-icons';
12489
+ *
12490
+ * <MagickoMonitor1 size={24} className="text-blue-500" strokeWidth={2} />
12491
+ * ```
12492
+ */
12493
+ declare const MagickoMonitor1: React.ForwardRefExoticComponent<Omit<MagickoMonitor1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12494
+
12495
+ /**
12496
+ * Props for the MagickoMonitor11 icon component
12497
+ * @property {number | string} [size] - Size of the icon (default: 24)
12498
+ */
12499
+ interface MagickoMonitor11Props extends React.SVGProps<SVGSVGElement> {
12500
+ size?: number | string;
12501
+ }
12502
+ /**
12503
+ * MagickoMonitor11 icon component
12504
+ * @example
12505
+ * ```tsx
12506
+ * import { MagickoMonitor11 } from 'magick-icons';
12507
+ *
12508
+ * <MagickoMonitor11 size={24} className="text-blue-500" strokeWidth={2} />
12509
+ * ```
12510
+ */
12511
+ declare const MagickoMonitor11: React.ForwardRefExoticComponent<Omit<MagickoMonitor11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12512
+
12513
+ /**
12514
+ * Props for the MagickoMonitorMobile1 icon component
12515
+ * @property {number | string} [size] - Size of the icon (default: 24)
12516
+ */
12517
+ interface MagickoMonitorMobile1Props extends React.SVGProps<SVGSVGElement> {
12518
+ size?: number | string;
12519
+ }
12520
+ /**
12521
+ * MagickoMonitorMobile1 icon component
12522
+ * @example
12523
+ * ```tsx
12524
+ * import { MagickoMonitorMobile1 } from 'magick-icons';
12525
+ *
12526
+ * <MagickoMonitorMobile1 size={24} className="text-blue-500" strokeWidth={2} />
12527
+ * ```
12528
+ */
12529
+ declare const MagickoMonitorMobile1: React.ForwardRefExoticComponent<Omit<MagickoMonitorMobile1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12530
+
12531
+ /**
12532
+ * Props for the MagickoMonitorRecorder1 icon component
12533
+ * @property {number | string} [size] - Size of the icon (default: 24)
12534
+ */
12535
+ interface MagickoMonitorRecorder1Props extends React.SVGProps<SVGSVGElement> {
12536
+ size?: number | string;
12537
+ }
12538
+ /**
12539
+ * MagickoMonitorRecorder1 icon component
12540
+ * @example
12541
+ * ```tsx
12542
+ * import { MagickoMonitorRecorder1 } from 'magick-icons';
12543
+ *
12544
+ * <MagickoMonitorRecorder1 size={24} className="text-blue-500" strokeWidth={2} />
12545
+ * ```
12546
+ */
12547
+ declare const MagickoMonitorRecorder1: React.ForwardRefExoticComponent<Omit<MagickoMonitorRecorder1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12548
+
12549
+ /**
12550
+ * Props for the MagickoMoon icon component
12551
+ * @property {number | string} [size] - Size of the icon (default: 24)
12552
+ */
12553
+ interface MagickoMoonProps extends React.SVGProps<SVGSVGElement> {
12554
+ size?: number | string;
12555
+ }
12556
+ /**
12557
+ * MagickoMoon icon component
12558
+ * @example
12559
+ * ```tsx
12560
+ * import { MagickoMoon } from 'magick-icons';
12561
+ *
12562
+ * <MagickoMoon size={24} className="text-blue-500" strokeWidth={2} />
12563
+ * ```
12564
+ */
12565
+ declare const MagickoMoon: React.ForwardRefExoticComponent<Omit<MagickoMoonProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12566
+
12567
+ /**
12568
+ * Props for the MagickoMountains icon component
12569
+ * @property {number | string} [size] - Size of the icon (default: 24)
12570
+ */
12571
+ interface MagickoMountainsProps extends React.SVGProps<SVGSVGElement> {
12572
+ size?: number | string;
12573
+ }
12574
+ /**
12575
+ * MagickoMountains icon component
12576
+ * @example
12577
+ * ```tsx
12578
+ * import { MagickoMountains } from 'magick-icons';
12579
+ *
12580
+ * <MagickoMountains size={24} className="text-blue-500" strokeWidth={2} />
12581
+ * ```
12582
+ */
12583
+ declare const MagickoMountains: React.ForwardRefExoticComponent<Omit<MagickoMountainsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12584
+
12585
+ /**
12586
+ * Props for the MagickoMouse1 icon component
12587
+ * @property {number | string} [size] - Size of the icon (default: 24)
12588
+ */
12589
+ interface MagickoMouse1Props extends React.SVGProps<SVGSVGElement> {
12590
+ size?: number | string;
12591
+ }
12592
+ /**
12593
+ * MagickoMouse1 icon component
12594
+ * @example
12595
+ * ```tsx
12596
+ * import { MagickoMouse1 } from 'magick-icons';
12597
+ *
12598
+ * <MagickoMouse1 size={24} className="text-blue-500" strokeWidth={2} />
12599
+ * ```
12600
+ */
12601
+ declare const MagickoMouse1: React.ForwardRefExoticComponent<Omit<MagickoMouse1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12602
+
12603
+ /**
12604
+ * Props for the MagickoMouse11 icon component
12605
+ * @property {number | string} [size] - Size of the icon (default: 24)
12606
+ */
12607
+ interface MagickoMouse11Props extends React.SVGProps<SVGSVGElement> {
12608
+ size?: number | string;
12609
+ }
12610
+ /**
12611
+ * MagickoMouse11 icon component
12612
+ * @example
12613
+ * ```tsx
12614
+ * import { MagickoMouse11 } from 'magick-icons';
12615
+ *
12616
+ * <MagickoMouse11 size={24} className="text-blue-500" strokeWidth={2} />
12617
+ * ```
12618
+ */
12619
+ declare const MagickoMouse11: React.ForwardRefExoticComponent<Omit<MagickoMouse11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12620
+
12621
+ /**
12622
+ * Props for the MagickoMouse21 icon component
12623
+ * @property {number | string} [size] - Size of the icon (default: 24)
12624
+ */
12625
+ interface MagickoMouse21Props extends React.SVGProps<SVGSVGElement> {
12626
+ size?: number | string;
12627
+ }
12628
+ /**
12629
+ * MagickoMouse21 icon component
12630
+ * @example
12631
+ * ```tsx
12632
+ * import { MagickoMouse21 } from 'magick-icons';
12633
+ *
12634
+ * <MagickoMouse21 size={24} className="text-blue-500" strokeWidth={2} />
12635
+ * ```
12636
+ */
12637
+ declare const MagickoMouse21: React.ForwardRefExoticComponent<Omit<MagickoMouse21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12638
+
12639
+ /**
12640
+ * Props for the MagickoMouse31 icon component
12641
+ * @property {number | string} [size] - Size of the icon (default: 24)
12642
+ */
12643
+ interface MagickoMouse31Props extends React.SVGProps<SVGSVGElement> {
12644
+ size?: number | string;
12645
+ }
12646
+ /**
12647
+ * MagickoMouse31 icon component
12648
+ * @example
12649
+ * ```tsx
12650
+ * import { MagickoMouse31 } from 'magick-icons';
12651
+ *
12652
+ * <MagickoMouse31 size={24} className="text-blue-500" strokeWidth={2} />
12653
+ * ```
12654
+ */
12655
+ declare const MagickoMouse31: React.ForwardRefExoticComponent<Omit<MagickoMouse31Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12656
+
12657
+ /**
12658
+ * Props for the MagickoMushroom icon component
12659
+ * @property {number | string} [size] - Size of the icon (default: 24)
12660
+ */
12661
+ interface MagickoMushroomProps extends React.SVGProps<SVGSVGElement> {
12662
+ size?: number | string;
12663
+ }
12664
+ /**
12665
+ * MagickoMushroom icon component
12666
+ * @example
12667
+ * ```tsx
12668
+ * import { MagickoMushroom } from 'magick-icons';
12669
+ *
12670
+ * <MagickoMushroom size={24} className="text-blue-500" strokeWidth={2} />
12671
+ * ```
12672
+ */
12673
+ declare const MagickoMushroom: React.ForwardRefExoticComponent<Omit<MagickoMushroomProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12674
+
12675
+ /**
12676
+ * Props for the MagickoMusic icon component
12677
+ * @property {number | string} [size] - Size of the icon (default: 24)
12678
+ */
12679
+ interface MagickoMusicProps extends React.SVGProps<SVGSVGElement> {
12680
+ size?: number | string;
12681
+ }
12682
+ /**
12683
+ * MagickoMusic icon component
12684
+ * @example
12685
+ * ```tsx
12686
+ * import { MagickoMusic } from 'magick-icons';
12687
+ *
12688
+ * <MagickoMusic size={24} className="text-blue-500" strokeWidth={2} />
12689
+ * ```
12690
+ */
12691
+ declare const MagickoMusic: React.ForwardRefExoticComponent<Omit<MagickoMusicProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12692
+
12693
+ /**
12694
+ * Props for the MagickoMusicFilter icon component
12695
+ * @property {number | string} [size] - Size of the icon (default: 24)
12696
+ */
12697
+ interface MagickoMusicFilterProps extends React.SVGProps<SVGSVGElement> {
12698
+ size?: number | string;
12699
+ }
12700
+ /**
12701
+ * MagickoMusicFilter icon component
12702
+ * @example
12703
+ * ```tsx
12704
+ * import { MagickoMusicFilter } from 'magick-icons';
12705
+ *
12706
+ * <MagickoMusicFilter size={24} className="text-blue-500" strokeWidth={2} />
12707
+ * ```
12708
+ */
12709
+ declare const MagickoMusicFilter: React.ForwardRefExoticComponent<Omit<MagickoMusicFilterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12710
+
12711
+ /**
12712
+ * Props for the MagickoMusicLibrary2 icon component
12713
+ * @property {number | string} [size] - Size of the icon (default: 24)
12714
+ */
12715
+ interface MagickoMusicLibrary2Props extends React.SVGProps<SVGSVGElement> {
12716
+ size?: number | string;
12717
+ }
12718
+ /**
12719
+ * MagickoMusicLibrary2 icon component
12720
+ * @example
12721
+ * ```tsx
12722
+ * import { MagickoMusicLibrary2 } from 'magick-icons';
12723
+ *
12724
+ * <MagickoMusicLibrary2 size={24} className="text-blue-500" strokeWidth={2} />
12725
+ * ```
12726
+ */
12727
+ declare const MagickoMusicLibrary2: React.ForwardRefExoticComponent<Omit<MagickoMusicLibrary2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12728
+
12729
+ /**
12730
+ * Props for the MagickoMusicPlay icon component
12731
+ * @property {number | string} [size] - Size of the icon (default: 24)
12732
+ */
12733
+ interface MagickoMusicPlayProps extends React.SVGProps<SVGSVGElement> {
12734
+ size?: number | string;
12735
+ }
12736
+ /**
12737
+ * MagickoMusicPlay icon component
12738
+ * @example
12739
+ * ```tsx
12740
+ * import { MagickoMusicPlay } from 'magick-icons';
12741
+ *
12742
+ * <MagickoMusicPlay size={24} className="text-blue-500" strokeWidth={2} />
12743
+ * ```
12744
+ */
12745
+ declare const MagickoMusicPlay: React.ForwardRefExoticComponent<Omit<MagickoMusicPlayProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12746
+
12747
+ /**
12748
+ * Props for the MagickoMusicPlaylist icon component
12749
+ * @property {number | string} [size] - Size of the icon (default: 24)
12750
+ */
12751
+ interface MagickoMusicPlaylistProps extends React.SVGProps<SVGSVGElement> {
12752
+ size?: number | string;
12753
+ }
12754
+ /**
12755
+ * MagickoMusicPlaylist icon component
12756
+ * @example
12757
+ * ```tsx
12758
+ * import { MagickoMusicPlaylist } from 'magick-icons';
12759
+ *
12760
+ * <MagickoMusicPlaylist size={24} className="text-blue-500" strokeWidth={2} />
12761
+ * ```
12762
+ */
12763
+ declare const MagickoMusicPlaylist: React.ForwardRefExoticComponent<Omit<MagickoMusicPlaylistProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12764
+
12765
+ /**
12766
+ * Props for the MagickoMusicalNoteAi icon component
12767
+ * @property {number | string} [size] - Size of the icon (default: 24)
12768
+ */
12769
+ interface MagickoMusicalNoteAiProps extends React.SVGProps<SVGSVGElement> {
12770
+ size?: number | string;
12771
+ }
12772
+ /**
12773
+ * MagickoMusicalNoteAi icon component
12774
+ * @example
12775
+ * ```tsx
12776
+ * import { MagickoMusicalNoteAi } from 'magick-icons';
12777
+ *
12778
+ * <MagickoMusicalNoteAi size={24} className="text-blue-500" strokeWidth={2} />
12779
+ * ```
12780
+ */
12781
+ declare const MagickoMusicalNoteAi: React.ForwardRefExoticComponent<Omit<MagickoMusicalNoteAiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12782
+
12783
+ /**
12784
+ * Props for the MagickoMusicnote icon component
12785
+ * @property {number | string} [size] - Size of the icon (default: 24)
12786
+ */
12787
+ interface MagickoMusicnoteProps extends React.SVGProps<SVGSVGElement> {
12788
+ size?: number | string;
12789
+ }
12790
+ /**
12791
+ * MagickoMusicnote icon component
12792
+ * @example
12793
+ * ```tsx
12794
+ * import { MagickoMusicnote } from 'magick-icons';
12795
+ *
12796
+ * <MagickoMusicnote size={24} className="text-blue-500" strokeWidth={2} />
12797
+ * ```
12798
+ */
12799
+ declare const MagickoMusicnote: React.ForwardRefExoticComponent<Omit<MagickoMusicnoteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12800
+
12801
+ /**
12802
+ * Props for the MagickoNext icon component
12803
+ * @property {number | string} [size] - Size of the icon (default: 24)
12804
+ */
12805
+ interface MagickoNextProps extends React.SVGProps<SVGSVGElement> {
12806
+ size?: number | string;
12807
+ }
12808
+ /**
12809
+ * MagickoNext icon component
12810
+ * @example
12811
+ * ```tsx
12812
+ * import { MagickoNext } from 'magick-icons';
12813
+ *
12814
+ * <MagickoNext size={24} className="text-blue-500" strokeWidth={2} />
12815
+ * ```
12816
+ */
12817
+ declare const MagickoNext: React.ForwardRefExoticComponent<Omit<MagickoNextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12818
+
12819
+ /**
12820
+ * Props for the MagickoNote icon component
12821
+ * @property {number | string} [size] - Size of the icon (default: 24)
12822
+ */
12823
+ interface MagickoNoteProps extends React.SVGProps<SVGSVGElement> {
12824
+ size?: number | string;
12825
+ }
12826
+ /**
12827
+ * MagickoNote icon component
12828
+ * @example
12829
+ * ```tsx
12830
+ * import { MagickoNote } from 'magick-icons';
12831
+ *
12832
+ * <MagickoNote size={24} className="text-blue-500" strokeWidth={2} />
12833
+ * ```
12834
+ */
12835
+ declare const MagickoNote: React.ForwardRefExoticComponent<Omit<MagickoNoteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12836
+
12837
+ /**
12838
+ * Props for the MagickoNote1 icon component
12839
+ * @property {number | string} [size] - Size of the icon (default: 24)
12840
+ */
12841
+ interface MagickoNote1Props extends React.SVGProps<SVGSVGElement> {
12842
+ size?: number | string;
12843
+ }
12844
+ /**
12845
+ * MagickoNote1 icon component
12846
+ * @example
12847
+ * ```tsx
12848
+ * import { MagickoNote1 } from 'magick-icons';
12849
+ *
12850
+ * <MagickoNote1 size={24} className="text-blue-500" strokeWidth={2} />
12851
+ * ```
12852
+ */
12853
+ declare const MagickoNote1: React.ForwardRefExoticComponent<Omit<MagickoNote1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12854
+
12855
+ /**
12856
+ * Props for the MagickoNote11 icon component
12857
+ * @property {number | string} [size] - Size of the icon (default: 24)
12858
+ */
12859
+ interface MagickoNote11Props extends React.SVGProps<SVGSVGElement> {
12860
+ size?: number | string;
12861
+ }
12862
+ /**
12863
+ * MagickoNote11 icon component
12864
+ * @example
12865
+ * ```tsx
12866
+ * import { MagickoNote11 } from 'magick-icons';
12867
+ *
12868
+ * <MagickoNote11 size={24} className="text-blue-500" strokeWidth={2} />
12869
+ * ```
12870
+ */
12871
+ declare const MagickoNote11: React.ForwardRefExoticComponent<Omit<MagickoNote11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12872
+
12873
+ /**
12874
+ * Props for the MagickoNote2 icon component
12875
+ * @property {number | string} [size] - Size of the icon (default: 24)
12876
+ */
12877
+ interface MagickoNote2Props extends React.SVGProps<SVGSVGElement> {
12878
+ size?: number | string;
12879
+ }
12880
+ /**
12881
+ * MagickoNote2 icon component
12882
+ * @example
12883
+ * ```tsx
12884
+ * import { MagickoNote2 } from 'magick-icons';
12885
+ *
12886
+ * <MagickoNote2 size={24} className="text-blue-500" strokeWidth={2} />
12887
+ * ```
12888
+ */
12889
+ declare const MagickoNote2: React.ForwardRefExoticComponent<Omit<MagickoNote2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12890
+
12891
+ /**
12892
+ * Props for the MagickoNote21 icon component
12893
+ * @property {number | string} [size] - Size of the icon (default: 24)
12894
+ */
12895
+ interface MagickoNote21Props extends React.SVGProps<SVGSVGElement> {
12896
+ size?: number | string;
12897
+ }
12898
+ /**
12899
+ * MagickoNote21 icon component
12900
+ * @example
12901
+ * ```tsx
12902
+ * import { MagickoNote21 } from 'magick-icons';
12903
+ *
12904
+ * <MagickoNote21 size={24} className="text-blue-500" strokeWidth={2} />
12905
+ * ```
12906
+ */
12907
+ declare const MagickoNote21: React.ForwardRefExoticComponent<Omit<MagickoNote21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12908
+
12909
+ /**
12910
+ * Props for the MagickoNoteAdd icon component
12911
+ * @property {number | string} [size] - Size of the icon (default: 24)
12912
+ */
12913
+ interface MagickoNoteAddProps extends React.SVGProps<SVGSVGElement> {
12914
+ size?: number | string;
12915
+ }
12916
+ /**
12917
+ * MagickoNoteAdd icon component
12918
+ * @example
12919
+ * ```tsx
12920
+ * import { MagickoNoteAdd } from 'magick-icons';
12921
+ *
12922
+ * <MagickoNoteAdd size={24} className="text-blue-500" strokeWidth={2} />
12923
+ * ```
12924
+ */
12925
+ declare const MagickoNoteAdd: React.ForwardRefExoticComponent<Omit<MagickoNoteAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12926
+
12927
+ /**
12928
+ * Props for the MagickoNoteFavorite icon component
12929
+ * @property {number | string} [size] - Size of the icon (default: 24)
12930
+ */
12931
+ interface MagickoNoteFavoriteProps extends React.SVGProps<SVGSVGElement> {
12932
+ size?: number | string;
12933
+ }
12934
+ /**
12935
+ * MagickoNoteFavorite icon component
12936
+ * @example
12937
+ * ```tsx
12938
+ * import { MagickoNoteFavorite } from 'magick-icons';
12939
+ *
12940
+ * <MagickoNoteFavorite size={24} className="text-blue-500" strokeWidth={2} />
12941
+ * ```
12942
+ */
12943
+ declare const MagickoNoteFavorite: React.ForwardRefExoticComponent<Omit<MagickoNoteFavoriteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12944
+
12945
+ /**
12946
+ * Props for the MagickoNoteRemove icon component
12947
+ * @property {number | string} [size] - Size of the icon (default: 24)
12948
+ */
12949
+ interface MagickoNoteRemoveProps extends React.SVGProps<SVGSVGElement> {
12950
+ size?: number | string;
12951
+ }
12952
+ /**
12953
+ * MagickoNoteRemove icon component
12954
+ * @example
12955
+ * ```tsx
12956
+ * import { MagickoNoteRemove } from 'magick-icons';
12957
+ *
12958
+ * <MagickoNoteRemove size={24} className="text-blue-500" strokeWidth={2} />
12959
+ * ```
12960
+ */
12961
+ declare const MagickoNoteRemove: React.ForwardRefExoticComponent<Omit<MagickoNoteRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12962
+
12963
+ /**
12964
+ * Props for the MagickoNoteText icon component
12965
+ * @property {number | string} [size] - Size of the icon (default: 24)
12966
+ */
12967
+ interface MagickoNoteTextProps extends React.SVGProps<SVGSVGElement> {
12968
+ size?: number | string;
12969
+ }
12970
+ /**
12971
+ * MagickoNoteText icon component
12972
+ * @example
12973
+ * ```tsx
12974
+ * import { MagickoNoteText } from 'magick-icons';
12975
+ *
12976
+ * <MagickoNoteText size={24} className="text-blue-500" strokeWidth={2} />
12977
+ * ```
12978
+ */
12979
+ declare const MagickoNoteText: React.ForwardRefExoticComponent<Omit<MagickoNoteTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12980
+
12981
+ /**
12982
+ * Props for the MagickoNotification icon component
12983
+ * @property {number | string} [size] - Size of the icon (default: 24)
12984
+ */
12985
+ interface MagickoNotificationProps extends React.SVGProps<SVGSVGElement> {
12986
+ size?: number | string;
12987
+ }
12988
+ /**
12989
+ * MagickoNotification icon component
12990
+ * @example
12991
+ * ```tsx
12992
+ * import { MagickoNotification } from 'magick-icons';
12993
+ *
12994
+ * <MagickoNotification size={24} className="text-blue-500" strokeWidth={2} />
12995
+ * ```
12996
+ */
12997
+ declare const MagickoNotification: React.ForwardRefExoticComponent<Omit<MagickoNotificationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12998
+
12999
+ /**
13000
+ * Props for the MagickoNotification2 icon component
13001
+ * @property {number | string} [size] - Size of the icon (default: 24)
13002
+ */
13003
+ interface MagickoNotification2Props extends React.SVGProps<SVGSVGElement> {
13004
+ size?: number | string;
13005
+ }
13006
+ /**
13007
+ * MagickoNotification2 icon component
13008
+ * @example
13009
+ * ```tsx
13010
+ * import { MagickoNotification2 } from 'magick-icons';
13011
+ *
13012
+ * <MagickoNotification2 size={24} className="text-blue-500" strokeWidth={2} />
13013
+ * ```
13014
+ */
13015
+ declare const MagickoNotification2: React.ForwardRefExoticComponent<Omit<MagickoNotification2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
13016
+
13017
+ /**
13018
+ * Props for the MagickoNotificationBing icon component
13019
+ * @property {number | string} [size] - Size of the icon (default: 24)
13020
+ */
13021
+ interface MagickoNotificationBingProps extends React.SVGProps<SVGSVGElement> {
13022
+ size?: number | string;
13023
+ }
13024
+ /**
13025
+ * MagickoNotificationBing icon component
13026
+ * @example
13027
+ * ```tsx
13028
+ * import { MagickoNotificationBing } from 'magick-icons';
13029
+ *
13030
+ * <MagickoNotificationBing size={24} className="text-blue-500" strokeWidth={2} />
13031
+ * ```
13032
+ */
13033
+ declare const MagickoNotificationBing: React.ForwardRefExoticComponent<Omit<MagickoNotificationBingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13034
+
13035
+ /**
13036
+ * Props for the MagickoNotificationCircle icon component
13037
+ * @property {number | string} [size] - Size of the icon (default: 24)
13038
+ */
13039
+ interface MagickoNotificationCircleProps extends React.SVGProps<SVGSVGElement> {
13040
+ size?: number | string;
13041
+ }
13042
+ /**
13043
+ * MagickoNotificationCircle icon component
13044
+ * @example
13045
+ * ```tsx
13046
+ * import { MagickoNotificationCircle } from 'magick-icons';
13047
+ *
13048
+ * <MagickoNotificationCircle size={24} className="text-blue-500" strokeWidth={2} />
13049
+ * ```
13050
+ */
13051
+ declare const MagickoNotificationCircle: React.ForwardRefExoticComponent<Omit<MagickoNotificationCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13052
+
13053
+ /**
13054
+ * Props for the MagickoOak icon component
13055
+ * @property {number | string} [size] - Size of the icon (default: 24)
13056
+ */
13057
+ interface MagickoOakProps extends React.SVGProps<SVGSVGElement> {
13058
+ size?: number | string;
13059
+ }
13060
+ /**
13061
+ * MagickoOak icon component
13062
+ * @example
13063
+ * ```tsx
13064
+ * import { MagickoOak } from 'magick-icons';
13065
+ *
13066
+ * <MagickoOak size={24} className="text-blue-500" strokeWidth={2} />
13067
+ * ```
13068
+ */
13069
+ declare const MagickoOak: React.ForwardRefExoticComponent<Omit<MagickoOakProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13070
+
13071
+ /**
13072
+ * Props for the MagickoPadlock icon component
13073
+ * @property {number | string} [size] - Size of the icon (default: 24)
13074
+ */
13075
+ interface MagickoPadlockProps extends React.SVGProps<SVGSVGElement> {
13076
+ size?: number | string;
13077
+ }
13078
+ /**
13079
+ * MagickoPadlock icon component
13080
+ * @example
13081
+ * ```tsx
13082
+ * import { MagickoPadlock } from 'magick-icons';
13083
+ *
13084
+ * <MagickoPadlock size={24} className="text-blue-500" strokeWidth={2} />
13085
+ * ```
13086
+ */
13087
+ declare const MagickoPadlock: React.ForwardRefExoticComponent<Omit<MagickoPadlockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13088
+
13089
+ /**
13090
+ * Props for the MagickoPaintBrush2 icon component
13091
+ * @property {number | string} [size] - Size of the icon (default: 24)
13092
+ */
13093
+ interface MagickoPaintBrush2Props extends React.SVGProps<SVGSVGElement> {
13094
+ size?: number | string;
13095
+ }
13096
+ /**
13097
+ * MagickoPaintBrush2 icon component
13098
+ * @example
13099
+ * ```tsx
13100
+ * import { MagickoPaintBrush2 } from 'magick-icons';
13101
+ *
13102
+ * <MagickoPaintBrush2 size={24} className="text-blue-500" strokeWidth={2} />
13103
+ * ```
13104
+ */
13105
+ declare const MagickoPaintBrush2: React.ForwardRefExoticComponent<Omit<MagickoPaintBrush2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
13106
+
13107
+ /**
13108
+ * Props for the MagickoPaintRoller icon component
13109
+ * @property {number | string} [size] - Size of the icon (default: 24)
13110
+ */
13111
+ interface MagickoPaintRollerProps extends React.SVGProps<SVGSVGElement> {
13112
+ size?: number | string;
13113
+ }
13114
+ /**
13115
+ * MagickoPaintRoller icon component
13116
+ * @example
13117
+ * ```tsx
13118
+ * import { MagickoPaintRoller } from 'magick-icons';
13119
+ *
13120
+ * <MagickoPaintRoller size={24} className="text-blue-500" strokeWidth={2} />
13121
+ * ```
13122
+ */
13123
+ declare const MagickoPaintRoller: React.ForwardRefExoticComponent<Omit<MagickoPaintRollerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13124
+
13125
+ /**
13126
+ * Props for the MagickoPaintbucket icon component
13127
+ * @property {number | string} [size] - Size of the icon (default: 24)
13128
+ */
13129
+ interface MagickoPaintbucketProps extends React.SVGProps<SVGSVGElement> {
13130
+ size?: number | string;
13131
+ }
13132
+ /**
13133
+ * MagickoPaintbucket icon component
13134
+ * @example
13135
+ * ```tsx
13136
+ * import { MagickoPaintbucket } from 'magick-icons';
13137
+ *
13138
+ * <MagickoPaintbucket size={24} className="text-blue-500" strokeWidth={2} />
13139
+ * ```
13140
+ */
13141
+ declare const MagickoPaintbucket: React.ForwardRefExoticComponent<Omit<MagickoPaintbucketProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13142
+
13143
+ /**
13144
+ * Props for the MagickoPaperclip icon component
13145
+ * @property {number | string} [size] - Size of the icon (default: 24)
13146
+ */
13147
+ interface MagickoPaperclipProps extends React.SVGProps<SVGSVGElement> {
13148
+ size?: number | string;
13149
+ }
13150
+ /**
13151
+ * MagickoPaperclip icon component
13152
+ * @example
13153
+ * ```tsx
13154
+ * import { MagickoPaperclip } from 'magick-icons';
13155
+ *
13156
+ * <MagickoPaperclip size={24} className="text-blue-500" strokeWidth={2} />
13157
+ * ```
13158
+ */
13159
+ declare const MagickoPaperclip: React.ForwardRefExoticComponent<Omit<MagickoPaperclipProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13160
+
13161
+ /**
13162
+ * Props for the MagickoPaperclip2 icon component
13163
+ * @property {number | string} [size] - Size of the icon (default: 24)
13164
+ */
13165
+ interface MagickoPaperclip2Props extends React.SVGProps<SVGSVGElement> {
13166
+ size?: number | string;
13167
+ }
13168
+ /**
13169
+ * MagickoPaperclip2 icon component
13170
+ * @example
13171
+ * ```tsx
13172
+ * import { MagickoPaperclip2 } from 'magick-icons';
13173
+ *
13174
+ * <MagickoPaperclip2 size={24} className="text-blue-500" strokeWidth={2} />
13175
+ * ```
13176
+ */
13177
+ declare const MagickoPaperclip2: React.ForwardRefExoticComponent<Omit<MagickoPaperclip2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
13178
+
13179
+ /**
13180
+ * Props for the MagickoParagraphspacing icon component
13181
+ * @property {number | string} [size] - Size of the icon (default: 24)
13182
+ */
13183
+ interface MagickoParagraphspacingProps extends React.SVGProps<SVGSVGElement> {
13184
+ size?: number | string;
13185
+ }
13186
+ /**
13187
+ * MagickoParagraphspacing icon component
13188
+ * @example
13189
+ * ```tsx
13190
+ * import { MagickoParagraphspacing } from 'magick-icons';
13191
+ *
13192
+ * <MagickoParagraphspacing size={24} className="text-blue-500" strokeWidth={2} />
13193
+ * ```
13194
+ */
13195
+ declare const MagickoParagraphspacing: React.ForwardRefExoticComponent<Omit<MagickoParagraphspacingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13196
+
13197
+ /**
13198
+ * Props for the MagickoPartlycloudy icon component
13199
+ * @property {number | string} [size] - Size of the icon (default: 24)
13200
+ */
13201
+ interface MagickoPartlycloudyProps extends React.SVGProps<SVGSVGElement> {
13202
+ size?: number | string;
13203
+ }
13204
+ /**
13205
+ * MagickoPartlycloudy icon component
13206
+ * @example
13207
+ * ```tsx
13208
+ * import { MagickoPartlycloudy } from 'magick-icons';
13209
+ *
13210
+ * <MagickoPartlycloudy size={24} className="text-blue-500" strokeWidth={2} />
13211
+ * ```
13212
+ */
13213
+ declare const MagickoPartlycloudy: React.ForwardRefExoticComponent<Omit<MagickoPartlycloudyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13214
+
13215
+ /**
13216
+ * Props for the MagickoPause icon component
13217
+ * @property {number | string} [size] - Size of the icon (default: 24)
13218
+ */
13219
+ interface MagickoPauseProps extends React.SVGProps<SVGSVGElement> {
13220
+ size?: number | string;
13221
+ }
13222
+ /**
13223
+ * MagickoPause icon component
13224
+ * @example
13225
+ * ```tsx
13226
+ * import { MagickoPause } from 'magick-icons';
13227
+ *
13228
+ * <MagickoPause size={24} className="text-blue-500" strokeWidth={2} />
13229
+ * ```
13230
+ */
13231
+ declare const MagickoPause: React.ForwardRefExoticComponent<Omit<MagickoPauseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13232
+
13233
+ /**
13234
+ * Props for the MagickoPeople icon component
13235
+ * @property {number | string} [size] - Size of the icon (default: 24)
13236
+ */
13237
+ interface MagickoPeopleProps extends React.SVGProps<SVGSVGElement> {
13238
+ size?: number | string;
13239
+ }
13240
+ /**
13241
+ * MagickoPeople icon component
13242
+ * @example
13243
+ * ```tsx
13244
+ * import { MagickoPeople } from 'magick-icons';
13245
+ *
13246
+ * <MagickoPeople size={24} className="text-blue-500" strokeWidth={2} />
13247
+ * ```
13248
+ */
13249
+ declare const MagickoPeople: React.ForwardRefExoticComponent<Omit<MagickoPeopleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13250
+
13251
+ /**
13252
+ * Props for the MagickoPercentageCircle icon component
13253
+ * @property {number | string} [size] - Size of the icon (default: 24)
13254
+ */
13255
+ interface MagickoPercentageCircleProps extends React.SVGProps<SVGSVGElement> {
13256
+ size?: number | string;
13257
+ }
13258
+ /**
13259
+ * MagickoPercentageCircle icon component
13260
+ * @example
13261
+ * ```tsx
13262
+ * import { MagickoPercentageCircle } from 'magick-icons';
13263
+ *
13264
+ * <MagickoPercentageCircle size={24} className="text-blue-500" strokeWidth={2} />
13265
+ * ```
13266
+ */
13267
+ declare const MagickoPercentageCircle: React.ForwardRefExoticComponent<Omit<MagickoPercentageCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13268
+
13269
+ /**
13270
+ * Props for the MagickoPercentageSquare icon component
13271
+ * @property {number | string} [size] - Size of the icon (default: 24)
13272
+ */
13273
+ interface MagickoPercentageSquareProps extends React.SVGProps<SVGSVGElement> {
13274
+ size?: number | string;
13275
+ }
13276
+ /**
13277
+ * MagickoPercentageSquare icon component
13278
+ * @example
13279
+ * ```tsx
13280
+ * import { MagickoPercentageSquare } from 'magick-icons';
13281
+ *
13282
+ * <MagickoPercentageSquare size={24} className="text-blue-500" strokeWidth={2} />
13283
+ * ```
13284
+ */
13285
+ declare const MagickoPercentageSquare: React.ForwardRefExoticComponent<Omit<MagickoPercentageSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13286
+
13287
+ /**
13288
+ * Props for the MagickoPersonalcard icon component
13289
+ * @property {number | string} [size] - Size of the icon (default: 24)
13290
+ */
13291
+ interface MagickoPersonalcardProps extends React.SVGProps<SVGSVGElement> {
13292
+ size?: number | string;
13293
+ }
13294
+ /**
13295
+ * MagickoPersonalcard icon component
13296
+ * @example
13297
+ * ```tsx
13298
+ * import { MagickoPersonalcard } from 'magick-icons';
13299
+ *
13300
+ * <MagickoPersonalcard size={24} className="text-blue-500" strokeWidth={2} />
13301
+ * ```
13302
+ */
13303
+ declare const MagickoPersonalcard: React.ForwardRefExoticComponent<Omit<MagickoPersonalcardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13304
+
13305
+ /**
13306
+ * Props for the MagickoPlay icon component
13307
+ * @property {number | string} [size] - Size of the icon (default: 24)
13308
+ */
13309
+ interface MagickoPlayProps extends React.SVGProps<SVGSVGElement> {
13310
+ size?: number | string;
13311
+ }
13312
+ /**
13313
+ * MagickoPlay icon component
13314
+ * @example
13315
+ * ```tsx
13316
+ * import { MagickoPlay } from 'magick-icons';
13317
+ *
13318
+ * <MagickoPlay size={24} className="text-blue-500" strokeWidth={2} />
13319
+ * ```
13320
+ */
13321
+ declare const MagickoPlay: React.ForwardRefExoticComponent<Omit<MagickoPlayProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13322
+
13323
+ /**
13324
+ * Props for the MagickoPlayfinger icon component
13325
+ * @property {number | string} [size] - Size of the icon (default: 24)
13326
+ */
13327
+ interface MagickoPlayfingerProps extends React.SVGProps<SVGSVGElement> {
13328
+ size?: number | string;
13329
+ }
13330
+ /**
13331
+ * MagickoPlayfinger icon component
13332
+ * @example
13333
+ * ```tsx
13334
+ * import { MagickoPlayfinger } from 'magick-icons';
13335
+ *
13336
+ * <MagickoPlayfinger size={24} className="text-blue-500" strokeWidth={2} />
13337
+ * ```
13338
+ */
13339
+ declare const MagickoPlayfinger: React.ForwardRefExoticComponent<Omit<MagickoPlayfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13340
+
13341
+ /**
13342
+ * Props for the MagickoPoint icon component
13343
+ * @property {number | string} [size] - Size of the icon (default: 24)
13344
+ */
13345
+ interface MagickoPointProps extends React.SVGProps<SVGSVGElement> {
13346
+ size?: number | string;
13347
+ }
13348
+ /**
13349
+ * MagickoPoint icon component
13350
+ * @example
13351
+ * ```tsx
13352
+ * import { MagickoPoint } from 'magick-icons';
13353
+ *
13354
+ * <MagickoPoint size={24} className="text-blue-500" strokeWidth={2} />
13355
+ * ```
13356
+ */
13357
+ declare const MagickoPoint: React.ForwardRefExoticComponent<Omit<MagickoPointProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13358
+
13359
+ /**
13360
+ * Props for the MagickoPointfinger icon component
13361
+ * @property {number | string} [size] - Size of the icon (default: 24)
13362
+ */
13363
+ interface MagickoPointfingerProps extends React.SVGProps<SVGSVGElement> {
13364
+ size?: number | string;
13365
+ }
13366
+ /**
13367
+ * MagickoPointfinger icon component
13368
+ * @example
13369
+ * ```tsx
13370
+ * import { MagickoPointfinger } from 'magick-icons';
13371
+ *
13372
+ * <MagickoPointfinger size={24} className="text-blue-500" strokeWidth={2} />
13373
+ * ```
13374
+ */
13375
+ declare const MagickoPointfinger: React.ForwardRefExoticComponent<Omit<MagickoPointfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13376
+
13377
+ /**
13378
+ * Props for the MagickoPresentationChart icon component
13379
+ * @property {number | string} [size] - Size of the icon (default: 24)
13380
+ */
13381
+ interface MagickoPresentationChartProps extends React.SVGProps<SVGSVGElement> {
13382
+ size?: number | string;
13383
+ }
13384
+ /**
13385
+ * MagickoPresentationChart icon component
13386
+ * @example
13387
+ * ```tsx
13388
+ * import { MagickoPresentationChart } from 'magick-icons';
13389
+ *
13390
+ * <MagickoPresentationChart size={24} className="text-blue-500" strokeWidth={2} />
13391
+ * ```
13392
+ */
13393
+ declare const MagickoPresentationChart: React.ForwardRefExoticComponent<Omit<MagickoPresentationChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13394
+
13395
+ /**
13396
+ * Props for the MagickoPrevious icon component
13397
+ * @property {number | string} [size] - Size of the icon (default: 24)
13398
+ */
13399
+ interface MagickoPreviousProps extends React.SVGProps<SVGSVGElement> {
13400
+ size?: number | string;
13401
+ }
13402
+ /**
13403
+ * MagickoPrevious icon component
13404
+ * @example
13405
+ * ```tsx
13406
+ * import { MagickoPrevious } from 'magick-icons';
13407
+ *
13408
+ * <MagickoPrevious size={24} className="text-blue-500" strokeWidth={2} />
13409
+ * ```
13410
+ */
13411
+ declare const MagickoPrevious: React.ForwardRefExoticComponent<Omit<MagickoPreviousProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
13412
+
12333
13413
  /**
12334
13414
  * Props for the Marketing icon component
12335
13415
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -12618,4 +13698,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
12618
13698
  */
12619
13699
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12620
13700
 
12621
- 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, MagickoMobile1, type MagickoMobile1Props, 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 };
13701
+ 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, 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 };