magick-icons 0.1.239 → 0.1.241
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 +1081 -1
- package/index.d.ts +1081 -1
- package/index.js +975 -67
- package/index.js.map +1 -1
- package/index.mjs +919 -71
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -13410,6 +13410,1086 @@ interface MagickoPreviousProps extends React.SVGProps<SVGSVGElement> {
|
|
|
13410
13410
|
*/
|
|
13411
13411
|
declare const MagickoPrevious: React.ForwardRefExoticComponent<Omit<MagickoPreviousProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13412
13412
|
|
|
13413
|
+
/**
|
|
13414
|
+
* Props for the MagickoPrinter icon component
|
|
13415
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13416
|
+
*/
|
|
13417
|
+
interface MagickoPrinterProps extends React.SVGProps<SVGSVGElement> {
|
|
13418
|
+
size?: number | string;
|
|
13419
|
+
}
|
|
13420
|
+
/**
|
|
13421
|
+
* MagickoPrinter icon component
|
|
13422
|
+
* @example
|
|
13423
|
+
* ```tsx
|
|
13424
|
+
* import { MagickoPrinter } from 'magick-icons';
|
|
13425
|
+
*
|
|
13426
|
+
* <MagickoPrinter size={24} className="text-blue-500" strokeWidth={2} />
|
|
13427
|
+
* ```
|
|
13428
|
+
*/
|
|
13429
|
+
declare const MagickoPrinter: React.ForwardRefExoticComponent<Omit<MagickoPrinterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13430
|
+
|
|
13431
|
+
/**
|
|
13432
|
+
* Props for the MagickoPrinter1 icon component
|
|
13433
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13434
|
+
*/
|
|
13435
|
+
interface MagickoPrinter1Props extends React.SVGProps<SVGSVGElement> {
|
|
13436
|
+
size?: number | string;
|
|
13437
|
+
}
|
|
13438
|
+
/**
|
|
13439
|
+
* MagickoPrinter1 icon component
|
|
13440
|
+
* @example
|
|
13441
|
+
* ```tsx
|
|
13442
|
+
* import { MagickoPrinter1 } from 'magick-icons';
|
|
13443
|
+
*
|
|
13444
|
+
* <MagickoPrinter1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13445
|
+
* ```
|
|
13446
|
+
*/
|
|
13447
|
+
declare const MagickoPrinter1: React.ForwardRefExoticComponent<Omit<MagickoPrinter1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13448
|
+
|
|
13449
|
+
/**
|
|
13450
|
+
* Props for the MagickoPrinterSlash icon component
|
|
13451
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13452
|
+
*/
|
|
13453
|
+
interface MagickoPrinterSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
13454
|
+
size?: number | string;
|
|
13455
|
+
}
|
|
13456
|
+
/**
|
|
13457
|
+
* MagickoPrinterSlash icon component
|
|
13458
|
+
* @example
|
|
13459
|
+
* ```tsx
|
|
13460
|
+
* import { MagickoPrinterSlash } from 'magick-icons';
|
|
13461
|
+
*
|
|
13462
|
+
* <MagickoPrinterSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
13463
|
+
* ```
|
|
13464
|
+
*/
|
|
13465
|
+
declare const MagickoPrinterSlash: React.ForwardRefExoticComponent<Omit<MagickoPrinterSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13466
|
+
|
|
13467
|
+
/**
|
|
13468
|
+
* Props for the MagickoProfile icon component
|
|
13469
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13470
|
+
*/
|
|
13471
|
+
interface MagickoProfileProps extends React.SVGProps<SVGSVGElement> {
|
|
13472
|
+
size?: number | string;
|
|
13473
|
+
}
|
|
13474
|
+
/**
|
|
13475
|
+
* MagickoProfile icon component
|
|
13476
|
+
* @example
|
|
13477
|
+
* ```tsx
|
|
13478
|
+
* import { MagickoProfile } from 'magick-icons';
|
|
13479
|
+
*
|
|
13480
|
+
* <MagickoProfile size={24} className="text-blue-500" strokeWidth={2} />
|
|
13481
|
+
* ```
|
|
13482
|
+
*/
|
|
13483
|
+
declare const MagickoProfile: React.ForwardRefExoticComponent<Omit<MagickoProfileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13484
|
+
|
|
13485
|
+
/**
|
|
13486
|
+
* Props for the MagickoProfile1 icon component
|
|
13487
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13488
|
+
*/
|
|
13489
|
+
interface MagickoProfile1Props extends React.SVGProps<SVGSVGElement> {
|
|
13490
|
+
size?: number | string;
|
|
13491
|
+
}
|
|
13492
|
+
/**
|
|
13493
|
+
* MagickoProfile1 icon component
|
|
13494
|
+
* @example
|
|
13495
|
+
* ```tsx
|
|
13496
|
+
* import { MagickoProfile1 } from 'magick-icons';
|
|
13497
|
+
*
|
|
13498
|
+
* <MagickoProfile1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13499
|
+
* ```
|
|
13500
|
+
*/
|
|
13501
|
+
declare const MagickoProfile1: React.ForwardRefExoticComponent<Omit<MagickoProfile1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13502
|
+
|
|
13503
|
+
/**
|
|
13504
|
+
* Props for the MagickoProfile2user icon component
|
|
13505
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13506
|
+
*/
|
|
13507
|
+
interface MagickoProfile2userProps extends React.SVGProps<SVGSVGElement> {
|
|
13508
|
+
size?: number | string;
|
|
13509
|
+
}
|
|
13510
|
+
/**
|
|
13511
|
+
* MagickoProfile2user icon component
|
|
13512
|
+
* @example
|
|
13513
|
+
* ```tsx
|
|
13514
|
+
* import { MagickoProfile2user } from 'magick-icons';
|
|
13515
|
+
*
|
|
13516
|
+
* <MagickoProfile2user size={24} className="text-blue-500" strokeWidth={2} />
|
|
13517
|
+
* ```
|
|
13518
|
+
*/
|
|
13519
|
+
declare const MagickoProfile2user: React.ForwardRefExoticComponent<Omit<MagickoProfile2userProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13520
|
+
|
|
13521
|
+
/**
|
|
13522
|
+
* Props for the MagickoProfileAdd icon component
|
|
13523
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13524
|
+
*/
|
|
13525
|
+
interface MagickoProfileAddProps extends React.SVGProps<SVGSVGElement> {
|
|
13526
|
+
size?: number | string;
|
|
13527
|
+
}
|
|
13528
|
+
/**
|
|
13529
|
+
* MagickoProfileAdd icon component
|
|
13530
|
+
* @example
|
|
13531
|
+
* ```tsx
|
|
13532
|
+
* import { MagickoProfileAdd } from 'magick-icons';
|
|
13533
|
+
*
|
|
13534
|
+
* <MagickoProfileAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
13535
|
+
* ```
|
|
13536
|
+
*/
|
|
13537
|
+
declare const MagickoProfileAdd: React.ForwardRefExoticComponent<Omit<MagickoProfileAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13538
|
+
|
|
13539
|
+
/**
|
|
13540
|
+
* Props for the MagickoProfileCircle icon component
|
|
13541
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13542
|
+
*/
|
|
13543
|
+
interface MagickoProfileCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
13544
|
+
size?: number | string;
|
|
13545
|
+
}
|
|
13546
|
+
/**
|
|
13547
|
+
* MagickoProfileCircle icon component
|
|
13548
|
+
* @example
|
|
13549
|
+
* ```tsx
|
|
13550
|
+
* import { MagickoProfileCircle } from 'magick-icons';
|
|
13551
|
+
*
|
|
13552
|
+
* <MagickoProfileCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
13553
|
+
* ```
|
|
13554
|
+
*/
|
|
13555
|
+
declare const MagickoProfileCircle: React.ForwardRefExoticComponent<Omit<MagickoProfileCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13556
|
+
|
|
13557
|
+
/**
|
|
13558
|
+
* Props for the MagickoProfileDelete icon component
|
|
13559
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13560
|
+
*/
|
|
13561
|
+
interface MagickoProfileDeleteProps extends React.SVGProps<SVGSVGElement> {
|
|
13562
|
+
size?: number | string;
|
|
13563
|
+
}
|
|
13564
|
+
/**
|
|
13565
|
+
* MagickoProfileDelete icon component
|
|
13566
|
+
* @example
|
|
13567
|
+
* ```tsx
|
|
13568
|
+
* import { MagickoProfileDelete } from 'magick-icons';
|
|
13569
|
+
*
|
|
13570
|
+
* <MagickoProfileDelete size={24} className="text-blue-500" strokeWidth={2} />
|
|
13571
|
+
* ```
|
|
13572
|
+
*/
|
|
13573
|
+
declare const MagickoProfileDelete: React.ForwardRefExoticComponent<Omit<MagickoProfileDeleteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13574
|
+
|
|
13575
|
+
/**
|
|
13576
|
+
* Props for the MagickoProfileRemove icon component
|
|
13577
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13578
|
+
*/
|
|
13579
|
+
interface MagickoProfileRemoveProps extends React.SVGProps<SVGSVGElement> {
|
|
13580
|
+
size?: number | string;
|
|
13581
|
+
}
|
|
13582
|
+
/**
|
|
13583
|
+
* MagickoProfileRemove icon component
|
|
13584
|
+
* @example
|
|
13585
|
+
* ```tsx
|
|
13586
|
+
* import { MagickoProfileRemove } from 'magick-icons';
|
|
13587
|
+
*
|
|
13588
|
+
* <MagickoProfileRemove size={24} className="text-blue-500" strokeWidth={2} />
|
|
13589
|
+
* ```
|
|
13590
|
+
*/
|
|
13591
|
+
declare const MagickoProfileRemove: React.ForwardRefExoticComponent<Omit<MagickoProfileRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13592
|
+
|
|
13593
|
+
/**
|
|
13594
|
+
* Props for the MagickoProfileTick icon component
|
|
13595
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13596
|
+
*/
|
|
13597
|
+
interface MagickoProfileTickProps extends React.SVGProps<SVGSVGElement> {
|
|
13598
|
+
size?: number | string;
|
|
13599
|
+
}
|
|
13600
|
+
/**
|
|
13601
|
+
* MagickoProfileTick icon component
|
|
13602
|
+
* @example
|
|
13603
|
+
* ```tsx
|
|
13604
|
+
* import { MagickoProfileTick } from 'magick-icons';
|
|
13605
|
+
*
|
|
13606
|
+
* <MagickoProfileTick size={24} className="text-blue-500" strokeWidth={2} />
|
|
13607
|
+
* ```
|
|
13608
|
+
*/
|
|
13609
|
+
declare const MagickoProfileTick: React.ForwardRefExoticComponent<Omit<MagickoProfileTickProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13610
|
+
|
|
13611
|
+
/**
|
|
13612
|
+
* Props for the MagickoProtectfinger icon component
|
|
13613
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13614
|
+
*/
|
|
13615
|
+
interface MagickoProtectfingerProps extends React.SVGProps<SVGSVGElement> {
|
|
13616
|
+
size?: number | string;
|
|
13617
|
+
}
|
|
13618
|
+
/**
|
|
13619
|
+
* MagickoProtectfinger icon component
|
|
13620
|
+
* @example
|
|
13621
|
+
* ```tsx
|
|
13622
|
+
* import { MagickoProtectfinger } from 'magick-icons';
|
|
13623
|
+
*
|
|
13624
|
+
* <MagickoProtectfinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
13625
|
+
* ```
|
|
13626
|
+
*/
|
|
13627
|
+
declare const MagickoProtectfinger: React.ForwardRefExoticComponent<Omit<MagickoProtectfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13628
|
+
|
|
13629
|
+
/**
|
|
13630
|
+
* Props for the MagickoPushbutton icon component
|
|
13631
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13632
|
+
*/
|
|
13633
|
+
interface MagickoPushbuttonProps extends React.SVGProps<SVGSVGElement> {
|
|
13634
|
+
size?: number | string;
|
|
13635
|
+
}
|
|
13636
|
+
/**
|
|
13637
|
+
* MagickoPushbutton icon component
|
|
13638
|
+
* @example
|
|
13639
|
+
* ```tsx
|
|
13640
|
+
* import { MagickoPushbutton } from 'magick-icons';
|
|
13641
|
+
*
|
|
13642
|
+
* <MagickoPushbutton size={24} className="text-blue-500" strokeWidth={2} />
|
|
13643
|
+
* ```
|
|
13644
|
+
*/
|
|
13645
|
+
declare const MagickoPushbutton: React.ForwardRefExoticComponent<Omit<MagickoPushbuttonProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13646
|
+
|
|
13647
|
+
/**
|
|
13648
|
+
* Props for the MagickoPushfinger icon component
|
|
13649
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13650
|
+
*/
|
|
13651
|
+
interface MagickoPushfingerProps extends React.SVGProps<SVGSVGElement> {
|
|
13652
|
+
size?: number | string;
|
|
13653
|
+
}
|
|
13654
|
+
/**
|
|
13655
|
+
* MagickoPushfinger icon component
|
|
13656
|
+
* @example
|
|
13657
|
+
* ```tsx
|
|
13658
|
+
* import { MagickoPushfinger } from 'magick-icons';
|
|
13659
|
+
*
|
|
13660
|
+
* <MagickoPushfinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
13661
|
+
* ```
|
|
13662
|
+
*/
|
|
13663
|
+
declare const MagickoPushfinger: React.ForwardRefExoticComponent<Omit<MagickoPushfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13664
|
+
|
|
13665
|
+
/**
|
|
13666
|
+
* Props for the MagickoQuestionBubble icon component
|
|
13667
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13668
|
+
*/
|
|
13669
|
+
interface MagickoQuestionBubbleProps extends React.SVGProps<SVGSVGElement> {
|
|
13670
|
+
size?: number | string;
|
|
13671
|
+
}
|
|
13672
|
+
/**
|
|
13673
|
+
* MagickoQuestionBubble icon component
|
|
13674
|
+
* @example
|
|
13675
|
+
* ```tsx
|
|
13676
|
+
* import { MagickoQuestionBubble } from 'magick-icons';
|
|
13677
|
+
*
|
|
13678
|
+
* <MagickoQuestionBubble size={24} className="text-blue-500" strokeWidth={2} />
|
|
13679
|
+
* ```
|
|
13680
|
+
*/
|
|
13681
|
+
declare const MagickoQuestionBubble: React.ForwardRefExoticComponent<Omit<MagickoQuestionBubbleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13682
|
+
|
|
13683
|
+
/**
|
|
13684
|
+
* Props for the MagickoQuestionCircle icon component
|
|
13685
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13686
|
+
*/
|
|
13687
|
+
interface MagickoQuestionCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
13688
|
+
size?: number | string;
|
|
13689
|
+
}
|
|
13690
|
+
/**
|
|
13691
|
+
* MagickoQuestionCircle icon component
|
|
13692
|
+
* @example
|
|
13693
|
+
* ```tsx
|
|
13694
|
+
* import { MagickoQuestionCircle } from 'magick-icons';
|
|
13695
|
+
*
|
|
13696
|
+
* <MagickoQuestionCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
13697
|
+
* ```
|
|
13698
|
+
*/
|
|
13699
|
+
declare const MagickoQuestionCircle: React.ForwardRefExoticComponent<Omit<MagickoQuestionCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13700
|
+
|
|
13701
|
+
/**
|
|
13702
|
+
* Props for the MagickoQuestionSquare icon component
|
|
13703
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13704
|
+
*/
|
|
13705
|
+
interface MagickoQuestionSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
13706
|
+
size?: number | string;
|
|
13707
|
+
}
|
|
13708
|
+
/**
|
|
13709
|
+
* MagickoQuestionSquare icon component
|
|
13710
|
+
* @example
|
|
13711
|
+
* ```tsx
|
|
13712
|
+
* import { MagickoQuestionSquare } from 'magick-icons';
|
|
13713
|
+
*
|
|
13714
|
+
* <MagickoQuestionSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
13715
|
+
* ```
|
|
13716
|
+
*/
|
|
13717
|
+
declare const MagickoQuestionSquare: React.ForwardRefExoticComponent<Omit<MagickoQuestionSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13718
|
+
|
|
13719
|
+
/**
|
|
13720
|
+
* Props for the MagickoQuoteDown icon component
|
|
13721
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13722
|
+
*/
|
|
13723
|
+
interface MagickoQuoteDownProps extends React.SVGProps<SVGSVGElement> {
|
|
13724
|
+
size?: number | string;
|
|
13725
|
+
}
|
|
13726
|
+
/**
|
|
13727
|
+
* MagickoQuoteDown icon component
|
|
13728
|
+
* @example
|
|
13729
|
+
* ```tsx
|
|
13730
|
+
* import { MagickoQuoteDown } from 'magick-icons';
|
|
13731
|
+
*
|
|
13732
|
+
* <MagickoQuoteDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
13733
|
+
* ```
|
|
13734
|
+
*/
|
|
13735
|
+
declare const MagickoQuoteDown: React.ForwardRefExoticComponent<Omit<MagickoQuoteDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13736
|
+
|
|
13737
|
+
/**
|
|
13738
|
+
* Props for the MagickoQuoteUp icon component
|
|
13739
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13740
|
+
*/
|
|
13741
|
+
interface MagickoQuoteUpProps extends React.SVGProps<SVGSVGElement> {
|
|
13742
|
+
size?: number | string;
|
|
13743
|
+
}
|
|
13744
|
+
/**
|
|
13745
|
+
* MagickoQuoteUp icon component
|
|
13746
|
+
* @example
|
|
13747
|
+
* ```tsx
|
|
13748
|
+
* import { MagickoQuoteUp } from 'magick-icons';
|
|
13749
|
+
*
|
|
13750
|
+
* <MagickoQuoteUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
13751
|
+
* ```
|
|
13752
|
+
*/
|
|
13753
|
+
declare const MagickoQuoteUp: React.ForwardRefExoticComponent<Omit<MagickoQuoteUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13754
|
+
|
|
13755
|
+
/**
|
|
13756
|
+
* Props for the MagickoRam icon component
|
|
13757
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13758
|
+
*/
|
|
13759
|
+
interface MagickoRamProps extends React.SVGProps<SVGSVGElement> {
|
|
13760
|
+
size?: number | string;
|
|
13761
|
+
}
|
|
13762
|
+
/**
|
|
13763
|
+
* MagickoRam icon component
|
|
13764
|
+
* @example
|
|
13765
|
+
* ```tsx
|
|
13766
|
+
* import { MagickoRam } from 'magick-icons';
|
|
13767
|
+
*
|
|
13768
|
+
* <MagickoRam size={24} className="text-blue-500" strokeWidth={2} />
|
|
13769
|
+
* ```
|
|
13770
|
+
*/
|
|
13771
|
+
declare const MagickoRam: React.ForwardRefExoticComponent<Omit<MagickoRamProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13772
|
+
|
|
13773
|
+
/**
|
|
13774
|
+
* Props for the MagickoRam2 icon component
|
|
13775
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13776
|
+
*/
|
|
13777
|
+
interface MagickoRam2Props extends React.SVGProps<SVGSVGElement> {
|
|
13778
|
+
size?: number | string;
|
|
13779
|
+
}
|
|
13780
|
+
/**
|
|
13781
|
+
* MagickoRam2 icon component
|
|
13782
|
+
* @example
|
|
13783
|
+
* ```tsx
|
|
13784
|
+
* import { MagickoRam2 } from 'magick-icons';
|
|
13785
|
+
*
|
|
13786
|
+
* <MagickoRam2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13787
|
+
* ```
|
|
13788
|
+
*/
|
|
13789
|
+
declare const MagickoRam2: React.ForwardRefExoticComponent<Omit<MagickoRam2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13790
|
+
|
|
13791
|
+
/**
|
|
13792
|
+
* Props for the MagickoReceipt icon component
|
|
13793
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13794
|
+
*/
|
|
13795
|
+
interface MagickoReceiptProps extends React.SVGProps<SVGSVGElement> {
|
|
13796
|
+
size?: number | string;
|
|
13797
|
+
}
|
|
13798
|
+
/**
|
|
13799
|
+
* MagickoReceipt icon component
|
|
13800
|
+
* @example
|
|
13801
|
+
* ```tsx
|
|
13802
|
+
* import { MagickoReceipt } from 'magick-icons';
|
|
13803
|
+
*
|
|
13804
|
+
* <MagickoReceipt size={24} className="text-blue-500" strokeWidth={2} />
|
|
13805
|
+
* ```
|
|
13806
|
+
*/
|
|
13807
|
+
declare const MagickoReceipt: React.ForwardRefExoticComponent<Omit<MagickoReceiptProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13808
|
+
|
|
13809
|
+
/**
|
|
13810
|
+
* Props for the MagickoReceipt1 icon component
|
|
13811
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13812
|
+
*/
|
|
13813
|
+
interface MagickoReceipt1Props extends React.SVGProps<SVGSVGElement> {
|
|
13814
|
+
size?: number | string;
|
|
13815
|
+
}
|
|
13816
|
+
/**
|
|
13817
|
+
* MagickoReceipt1 icon component
|
|
13818
|
+
* @example
|
|
13819
|
+
* ```tsx
|
|
13820
|
+
* import { MagickoReceipt1 } from 'magick-icons';
|
|
13821
|
+
*
|
|
13822
|
+
* <MagickoReceipt1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13823
|
+
* ```
|
|
13824
|
+
*/
|
|
13825
|
+
declare const MagickoReceipt1: React.ForwardRefExoticComponent<Omit<MagickoReceipt1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13826
|
+
|
|
13827
|
+
/**
|
|
13828
|
+
* Props for the MagickoReceipt11 icon component
|
|
13829
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13830
|
+
*/
|
|
13831
|
+
interface MagickoReceipt11Props extends React.SVGProps<SVGSVGElement> {
|
|
13832
|
+
size?: number | string;
|
|
13833
|
+
}
|
|
13834
|
+
/**
|
|
13835
|
+
* MagickoReceipt11 icon component
|
|
13836
|
+
* @example
|
|
13837
|
+
* ```tsx
|
|
13838
|
+
* import { MagickoReceipt11 } from 'magick-icons';
|
|
13839
|
+
*
|
|
13840
|
+
* <MagickoReceipt11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13841
|
+
* ```
|
|
13842
|
+
*/
|
|
13843
|
+
declare const MagickoReceipt11: React.ForwardRefExoticComponent<Omit<MagickoReceipt11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13844
|
+
|
|
13845
|
+
/**
|
|
13846
|
+
* Props for the MagickoReceipt2 icon component
|
|
13847
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13848
|
+
*/
|
|
13849
|
+
interface MagickoReceipt2Props extends React.SVGProps<SVGSVGElement> {
|
|
13850
|
+
size?: number | string;
|
|
13851
|
+
}
|
|
13852
|
+
/**
|
|
13853
|
+
* MagickoReceipt2 icon component
|
|
13854
|
+
* @example
|
|
13855
|
+
* ```tsx
|
|
13856
|
+
* import { MagickoReceipt2 } from 'magick-icons';
|
|
13857
|
+
*
|
|
13858
|
+
* <MagickoReceipt2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13859
|
+
* ```
|
|
13860
|
+
*/
|
|
13861
|
+
declare const MagickoReceipt2: React.ForwardRefExoticComponent<Omit<MagickoReceipt2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13862
|
+
|
|
13863
|
+
/**
|
|
13864
|
+
* Props for the MagickoReceipt21 icon component
|
|
13865
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13866
|
+
*/
|
|
13867
|
+
interface MagickoReceipt21Props extends React.SVGProps<SVGSVGElement> {
|
|
13868
|
+
size?: number | string;
|
|
13869
|
+
}
|
|
13870
|
+
/**
|
|
13871
|
+
* MagickoReceipt21 icon component
|
|
13872
|
+
* @example
|
|
13873
|
+
* ```tsx
|
|
13874
|
+
* import { MagickoReceipt21 } from 'magick-icons';
|
|
13875
|
+
*
|
|
13876
|
+
* <MagickoReceipt21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13877
|
+
* ```
|
|
13878
|
+
*/
|
|
13879
|
+
declare const MagickoReceipt21: React.ForwardRefExoticComponent<Omit<MagickoReceipt21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13880
|
+
|
|
13881
|
+
/**
|
|
13882
|
+
* Props for the MagickoReceipt211 icon component
|
|
13883
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13884
|
+
*/
|
|
13885
|
+
interface MagickoReceipt211Props extends React.SVGProps<SVGSVGElement> {
|
|
13886
|
+
size?: number | string;
|
|
13887
|
+
}
|
|
13888
|
+
/**
|
|
13889
|
+
* MagickoReceipt211 icon component
|
|
13890
|
+
* @example
|
|
13891
|
+
* ```tsx
|
|
13892
|
+
* import { MagickoReceipt211 } from 'magick-icons';
|
|
13893
|
+
*
|
|
13894
|
+
* <MagickoReceipt211 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13895
|
+
* ```
|
|
13896
|
+
*/
|
|
13897
|
+
declare const MagickoReceipt211: React.ForwardRefExoticComponent<Omit<MagickoReceipt211Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13898
|
+
|
|
13899
|
+
/**
|
|
13900
|
+
* Props for the MagickoReceiptAdd icon component
|
|
13901
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13902
|
+
*/
|
|
13903
|
+
interface MagickoReceiptAddProps extends React.SVGProps<SVGSVGElement> {
|
|
13904
|
+
size?: number | string;
|
|
13905
|
+
}
|
|
13906
|
+
/**
|
|
13907
|
+
* MagickoReceiptAdd icon component
|
|
13908
|
+
* @example
|
|
13909
|
+
* ```tsx
|
|
13910
|
+
* import { MagickoReceiptAdd } from 'magick-icons';
|
|
13911
|
+
*
|
|
13912
|
+
* <MagickoReceiptAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
13913
|
+
* ```
|
|
13914
|
+
*/
|
|
13915
|
+
declare const MagickoReceiptAdd: React.ForwardRefExoticComponent<Omit<MagickoReceiptAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13916
|
+
|
|
13917
|
+
/**
|
|
13918
|
+
* Props for the MagickoReceiptDiscount icon component
|
|
13919
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13920
|
+
*/
|
|
13921
|
+
interface MagickoReceiptDiscountProps extends React.SVGProps<SVGSVGElement> {
|
|
13922
|
+
size?: number | string;
|
|
13923
|
+
}
|
|
13924
|
+
/**
|
|
13925
|
+
* MagickoReceiptDiscount icon component
|
|
13926
|
+
* @example
|
|
13927
|
+
* ```tsx
|
|
13928
|
+
* import { MagickoReceiptDiscount } from 'magick-icons';
|
|
13929
|
+
*
|
|
13930
|
+
* <MagickoReceiptDiscount size={24} className="text-blue-500" strokeWidth={2} />
|
|
13931
|
+
* ```
|
|
13932
|
+
*/
|
|
13933
|
+
declare const MagickoReceiptDiscount: React.ForwardRefExoticComponent<Omit<MagickoReceiptDiscountProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13934
|
+
|
|
13935
|
+
/**
|
|
13936
|
+
* Props for the MagickoReceiptDisscount icon component
|
|
13937
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13938
|
+
*/
|
|
13939
|
+
interface MagickoReceiptDisscountProps extends React.SVGProps<SVGSVGElement> {
|
|
13940
|
+
size?: number | string;
|
|
13941
|
+
}
|
|
13942
|
+
/**
|
|
13943
|
+
* MagickoReceiptDisscount icon component
|
|
13944
|
+
* @example
|
|
13945
|
+
* ```tsx
|
|
13946
|
+
* import { MagickoReceiptDisscount } from 'magick-icons';
|
|
13947
|
+
*
|
|
13948
|
+
* <MagickoReceiptDisscount size={24} className="text-blue-500" strokeWidth={2} />
|
|
13949
|
+
* ```
|
|
13950
|
+
*/
|
|
13951
|
+
declare const MagickoReceiptDisscount: React.ForwardRefExoticComponent<Omit<MagickoReceiptDisscountProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13952
|
+
|
|
13953
|
+
/**
|
|
13954
|
+
* Props for the MagickoReceiptEdit icon component
|
|
13955
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13956
|
+
*/
|
|
13957
|
+
interface MagickoReceiptEditProps extends React.SVGProps<SVGSVGElement> {
|
|
13958
|
+
size?: number | string;
|
|
13959
|
+
}
|
|
13960
|
+
/**
|
|
13961
|
+
* MagickoReceiptEdit icon component
|
|
13962
|
+
* @example
|
|
13963
|
+
* ```tsx
|
|
13964
|
+
* import { MagickoReceiptEdit } from 'magick-icons';
|
|
13965
|
+
*
|
|
13966
|
+
* <MagickoReceiptEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
13967
|
+
* ```
|
|
13968
|
+
*/
|
|
13969
|
+
declare const MagickoReceiptEdit: React.ForwardRefExoticComponent<Omit<MagickoReceiptEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13970
|
+
|
|
13971
|
+
/**
|
|
13972
|
+
* Props for the MagickoReceiptItem icon component
|
|
13973
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13974
|
+
*/
|
|
13975
|
+
interface MagickoReceiptItemProps extends React.SVGProps<SVGSVGElement> {
|
|
13976
|
+
size?: number | string;
|
|
13977
|
+
}
|
|
13978
|
+
/**
|
|
13979
|
+
* MagickoReceiptItem icon component
|
|
13980
|
+
* @example
|
|
13981
|
+
* ```tsx
|
|
13982
|
+
* import { MagickoReceiptItem } from 'magick-icons';
|
|
13983
|
+
*
|
|
13984
|
+
* <MagickoReceiptItem size={24} className="text-blue-500" strokeWidth={2} />
|
|
13985
|
+
* ```
|
|
13986
|
+
*/
|
|
13987
|
+
declare const MagickoReceiptItem: React.ForwardRefExoticComponent<Omit<MagickoReceiptItemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13988
|
+
|
|
13989
|
+
/**
|
|
13990
|
+
* Props for the MagickoReceiptMinus icon component
|
|
13991
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13992
|
+
*/
|
|
13993
|
+
interface MagickoReceiptMinusProps extends React.SVGProps<SVGSVGElement> {
|
|
13994
|
+
size?: number | string;
|
|
13995
|
+
}
|
|
13996
|
+
/**
|
|
13997
|
+
* MagickoReceiptMinus icon component
|
|
13998
|
+
* @example
|
|
13999
|
+
* ```tsx
|
|
14000
|
+
* import { MagickoReceiptMinus } from 'magick-icons';
|
|
14001
|
+
*
|
|
14002
|
+
* <MagickoReceiptMinus size={24} className="text-blue-500" strokeWidth={2} />
|
|
14003
|
+
* ```
|
|
14004
|
+
*/
|
|
14005
|
+
declare const MagickoReceiptMinus: React.ForwardRefExoticComponent<Omit<MagickoReceiptMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14006
|
+
|
|
14007
|
+
/**
|
|
14008
|
+
* Props for the MagickoReceiptSearch icon component
|
|
14009
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14010
|
+
*/
|
|
14011
|
+
interface MagickoReceiptSearchProps extends React.SVGProps<SVGSVGElement> {
|
|
14012
|
+
size?: number | string;
|
|
14013
|
+
}
|
|
14014
|
+
/**
|
|
14015
|
+
* MagickoReceiptSearch icon component
|
|
14016
|
+
* @example
|
|
14017
|
+
* ```tsx
|
|
14018
|
+
* import { MagickoReceiptSearch } from 'magick-icons';
|
|
14019
|
+
*
|
|
14020
|
+
* <MagickoReceiptSearch size={24} className="text-blue-500" strokeWidth={2} />
|
|
14021
|
+
* ```
|
|
14022
|
+
*/
|
|
14023
|
+
declare const MagickoReceiptSearch: React.ForwardRefExoticComponent<Omit<MagickoReceiptSearchProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14024
|
+
|
|
14025
|
+
/**
|
|
14026
|
+
* Props for the MagickoReceiptSquare icon component
|
|
14027
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14028
|
+
*/
|
|
14029
|
+
interface MagickoReceiptSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
14030
|
+
size?: number | string;
|
|
14031
|
+
}
|
|
14032
|
+
/**
|
|
14033
|
+
* MagickoReceiptSquare icon component
|
|
14034
|
+
* @example
|
|
14035
|
+
* ```tsx
|
|
14036
|
+
* import { MagickoReceiptSquare } from 'magick-icons';
|
|
14037
|
+
*
|
|
14038
|
+
* <MagickoReceiptSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
14039
|
+
* ```
|
|
14040
|
+
*/
|
|
14041
|
+
declare const MagickoReceiptSquare: React.ForwardRefExoticComponent<Omit<MagickoReceiptSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14042
|
+
|
|
14043
|
+
/**
|
|
14044
|
+
* Props for the MagickoReceiptText icon component
|
|
14045
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14046
|
+
*/
|
|
14047
|
+
interface MagickoReceiptTextProps extends React.SVGProps<SVGSVGElement> {
|
|
14048
|
+
size?: number | string;
|
|
14049
|
+
}
|
|
14050
|
+
/**
|
|
14051
|
+
* MagickoReceiptText icon component
|
|
14052
|
+
* @example
|
|
14053
|
+
* ```tsx
|
|
14054
|
+
* import { MagickoReceiptText } from 'magick-icons';
|
|
14055
|
+
*
|
|
14056
|
+
* <MagickoReceiptText size={24} className="text-blue-500" strokeWidth={2} />
|
|
14057
|
+
* ```
|
|
14058
|
+
*/
|
|
14059
|
+
declare const MagickoReceiptText: React.ForwardRefExoticComponent<Omit<MagickoReceiptTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14060
|
+
|
|
14061
|
+
/**
|
|
14062
|
+
* Props for the MagickoReceiveCloud icon component
|
|
14063
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14064
|
+
*/
|
|
14065
|
+
interface MagickoReceiveCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
14066
|
+
size?: number | string;
|
|
14067
|
+
}
|
|
14068
|
+
/**
|
|
14069
|
+
* MagickoReceiveCloud icon component
|
|
14070
|
+
* @example
|
|
14071
|
+
* ```tsx
|
|
14072
|
+
* import { MagickoReceiveCloud } from 'magick-icons';
|
|
14073
|
+
*
|
|
14074
|
+
* <MagickoReceiveCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
14075
|
+
* ```
|
|
14076
|
+
*/
|
|
14077
|
+
declare const MagickoReceiveCloud: React.ForwardRefExoticComponent<Omit<MagickoReceiveCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14078
|
+
|
|
14079
|
+
/**
|
|
14080
|
+
* Props for the MagickoReceiveSquare01 icon component
|
|
14081
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14082
|
+
*/
|
|
14083
|
+
interface MagickoReceiveSquare01Props extends React.SVGProps<SVGSVGElement> {
|
|
14084
|
+
size?: number | string;
|
|
14085
|
+
}
|
|
14086
|
+
/**
|
|
14087
|
+
* MagickoReceiveSquare01 icon component
|
|
14088
|
+
* @example
|
|
14089
|
+
* ```tsx
|
|
14090
|
+
* import { MagickoReceiveSquare01 } from 'magick-icons';
|
|
14091
|
+
*
|
|
14092
|
+
* <MagickoReceiveSquare01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
14093
|
+
* ```
|
|
14094
|
+
*/
|
|
14095
|
+
declare const MagickoReceiveSquare01: React.ForwardRefExoticComponent<Omit<MagickoReceiveSquare01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14096
|
+
|
|
14097
|
+
/**
|
|
14098
|
+
* Props for the MagickoReceiveSquare02 icon component
|
|
14099
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14100
|
+
*/
|
|
14101
|
+
interface MagickoReceiveSquare02Props extends React.SVGProps<SVGSVGElement> {
|
|
14102
|
+
size?: number | string;
|
|
14103
|
+
}
|
|
14104
|
+
/**
|
|
14105
|
+
* MagickoReceiveSquare02 icon component
|
|
14106
|
+
* @example
|
|
14107
|
+
* ```tsx
|
|
14108
|
+
* import { MagickoReceiveSquare02 } from 'magick-icons';
|
|
14109
|
+
*
|
|
14110
|
+
* <MagickoReceiveSquare02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
14111
|
+
* ```
|
|
14112
|
+
*/
|
|
14113
|
+
declare const MagickoReceiveSquare02: React.ForwardRefExoticComponent<Omit<MagickoReceiveSquare02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14114
|
+
|
|
14115
|
+
/**
|
|
14116
|
+
* Props for the MagickoReceived icon component
|
|
14117
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14118
|
+
*/
|
|
14119
|
+
interface MagickoReceivedProps extends React.SVGProps<SVGSVGElement> {
|
|
14120
|
+
size?: number | string;
|
|
14121
|
+
}
|
|
14122
|
+
/**
|
|
14123
|
+
* MagickoReceived icon component
|
|
14124
|
+
* @example
|
|
14125
|
+
* ```tsx
|
|
14126
|
+
* import { MagickoReceived } from 'magick-icons';
|
|
14127
|
+
*
|
|
14128
|
+
* <MagickoReceived size={24} className="text-blue-500" strokeWidth={2} />
|
|
14129
|
+
* ```
|
|
14130
|
+
*/
|
|
14131
|
+
declare const MagickoReceived: React.ForwardRefExoticComponent<Omit<MagickoReceivedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14132
|
+
|
|
14133
|
+
/**
|
|
14134
|
+
* Props for the MagickoRecord icon component
|
|
14135
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14136
|
+
*/
|
|
14137
|
+
interface MagickoRecordProps extends React.SVGProps<SVGSVGElement> {
|
|
14138
|
+
size?: number | string;
|
|
14139
|
+
}
|
|
14140
|
+
/**
|
|
14141
|
+
* MagickoRecord icon component
|
|
14142
|
+
* @example
|
|
14143
|
+
* ```tsx
|
|
14144
|
+
* import { MagickoRecord } from 'magick-icons';
|
|
14145
|
+
*
|
|
14146
|
+
* <MagickoRecord size={24} className="text-blue-500" strokeWidth={2} />
|
|
14147
|
+
* ```
|
|
14148
|
+
*/
|
|
14149
|
+
declare const MagickoRecord: React.ForwardRefExoticComponent<Omit<MagickoRecordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14150
|
+
|
|
14151
|
+
/**
|
|
14152
|
+
* Props for the MagickoRedoArrow icon component
|
|
14153
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14154
|
+
*/
|
|
14155
|
+
interface MagickoRedoArrowProps extends React.SVGProps<SVGSVGElement> {
|
|
14156
|
+
size?: number | string;
|
|
14157
|
+
}
|
|
14158
|
+
/**
|
|
14159
|
+
* MagickoRedoArrow icon component
|
|
14160
|
+
* @example
|
|
14161
|
+
* ```tsx
|
|
14162
|
+
* import { MagickoRedoArrow } from 'magick-icons';
|
|
14163
|
+
*
|
|
14164
|
+
* <MagickoRedoArrow size={24} className="text-blue-500" strokeWidth={2} />
|
|
14165
|
+
* ```
|
|
14166
|
+
*/
|
|
14167
|
+
declare const MagickoRedoArrow: React.ForwardRefExoticComponent<Omit<MagickoRedoArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14168
|
+
|
|
14169
|
+
/**
|
|
14170
|
+
* Props for the MagickoRefreshArrow01 icon component
|
|
14171
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14172
|
+
*/
|
|
14173
|
+
interface MagickoRefreshArrow01Props extends React.SVGProps<SVGSVGElement> {
|
|
14174
|
+
size?: number | string;
|
|
14175
|
+
}
|
|
14176
|
+
/**
|
|
14177
|
+
* MagickoRefreshArrow01 icon component
|
|
14178
|
+
* @example
|
|
14179
|
+
* ```tsx
|
|
14180
|
+
* import { MagickoRefreshArrow01 } from 'magick-icons';
|
|
14181
|
+
*
|
|
14182
|
+
* <MagickoRefreshArrow01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
14183
|
+
* ```
|
|
14184
|
+
*/
|
|
14185
|
+
declare const MagickoRefreshArrow01: React.ForwardRefExoticComponent<Omit<MagickoRefreshArrow01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14186
|
+
|
|
14187
|
+
/**
|
|
14188
|
+
* Props for the MagickoRefreshArrow02 icon component
|
|
14189
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14190
|
+
*/
|
|
14191
|
+
interface MagickoRefreshArrow02Props extends React.SVGProps<SVGSVGElement> {
|
|
14192
|
+
size?: number | string;
|
|
14193
|
+
}
|
|
14194
|
+
/**
|
|
14195
|
+
* MagickoRefreshArrow02 icon component
|
|
14196
|
+
* @example
|
|
14197
|
+
* ```tsx
|
|
14198
|
+
* import { MagickoRefreshArrow02 } from 'magick-icons';
|
|
14199
|
+
*
|
|
14200
|
+
* <MagickoRefreshArrow02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
14201
|
+
* ```
|
|
14202
|
+
*/
|
|
14203
|
+
declare const MagickoRefreshArrow02: React.ForwardRefExoticComponent<Omit<MagickoRefreshArrow02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14204
|
+
|
|
14205
|
+
/**
|
|
14206
|
+
* Props for the MagickoRefreshCircle icon component
|
|
14207
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14208
|
+
*/
|
|
14209
|
+
interface MagickoRefreshCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
14210
|
+
size?: number | string;
|
|
14211
|
+
}
|
|
14212
|
+
/**
|
|
14213
|
+
* MagickoRefreshCircle icon component
|
|
14214
|
+
* @example
|
|
14215
|
+
* ```tsx
|
|
14216
|
+
* import { MagickoRefreshCircle } from 'magick-icons';
|
|
14217
|
+
*
|
|
14218
|
+
* <MagickoRefreshCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
14219
|
+
* ```
|
|
14220
|
+
*/
|
|
14221
|
+
declare const MagickoRefreshCircle: React.ForwardRefExoticComponent<Omit<MagickoRefreshCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14222
|
+
|
|
14223
|
+
/**
|
|
14224
|
+
* Props for the MagickoRefreshCloud icon component
|
|
14225
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14226
|
+
*/
|
|
14227
|
+
interface MagickoRefreshCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
14228
|
+
size?: number | string;
|
|
14229
|
+
}
|
|
14230
|
+
/**
|
|
14231
|
+
* MagickoRefreshCloud icon component
|
|
14232
|
+
* @example
|
|
14233
|
+
* ```tsx
|
|
14234
|
+
* import { MagickoRefreshCloud } from 'magick-icons';
|
|
14235
|
+
*
|
|
14236
|
+
* <MagickoRefreshCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
14237
|
+
* ```
|
|
14238
|
+
*/
|
|
14239
|
+
declare const MagickoRefreshCloud: React.ForwardRefExoticComponent<Omit<MagickoRefreshCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14240
|
+
|
|
14241
|
+
/**
|
|
14242
|
+
* Props for the MagickoRefreshLeft icon component
|
|
14243
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14244
|
+
*/
|
|
14245
|
+
interface MagickoRefreshLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
14246
|
+
size?: number | string;
|
|
14247
|
+
}
|
|
14248
|
+
/**
|
|
14249
|
+
* MagickoRefreshLeft icon component
|
|
14250
|
+
* @example
|
|
14251
|
+
* ```tsx
|
|
14252
|
+
* import { MagickoRefreshLeft } from 'magick-icons';
|
|
14253
|
+
*
|
|
14254
|
+
* <MagickoRefreshLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
14255
|
+
* ```
|
|
14256
|
+
*/
|
|
14257
|
+
declare const MagickoRefreshLeft: React.ForwardRefExoticComponent<Omit<MagickoRefreshLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14258
|
+
|
|
14259
|
+
/**
|
|
14260
|
+
* Props for the MagickoRefreshRight icon component
|
|
14261
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14262
|
+
*/
|
|
14263
|
+
interface MagickoRefreshRightProps extends React.SVGProps<SVGSVGElement> {
|
|
14264
|
+
size?: number | string;
|
|
14265
|
+
}
|
|
14266
|
+
/**
|
|
14267
|
+
* MagickoRefreshRight icon component
|
|
14268
|
+
* @example
|
|
14269
|
+
* ```tsx
|
|
14270
|
+
* import { MagickoRefreshRight } from 'magick-icons';
|
|
14271
|
+
*
|
|
14272
|
+
* <MagickoRefreshRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
14273
|
+
* ```
|
|
14274
|
+
*/
|
|
14275
|
+
declare const MagickoRefreshRight: React.ForwardRefExoticComponent<Omit<MagickoRefreshRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14276
|
+
|
|
14277
|
+
/**
|
|
14278
|
+
* Props for the MagickoRefreshSquare icon component
|
|
14279
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14280
|
+
*/
|
|
14281
|
+
interface MagickoRefreshSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
14282
|
+
size?: number | string;
|
|
14283
|
+
}
|
|
14284
|
+
/**
|
|
14285
|
+
* MagickoRefreshSquare icon component
|
|
14286
|
+
* @example
|
|
14287
|
+
* ```tsx
|
|
14288
|
+
* import { MagickoRefreshSquare } from 'magick-icons';
|
|
14289
|
+
*
|
|
14290
|
+
* <MagickoRefreshSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
14291
|
+
* ```
|
|
14292
|
+
*/
|
|
14293
|
+
declare const MagickoRefreshSquare: React.ForwardRefExoticComponent<Omit<MagickoRefreshSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14294
|
+
|
|
14295
|
+
/**
|
|
14296
|
+
* Props for the MagickoRelaxed icon component
|
|
14297
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14298
|
+
*/
|
|
14299
|
+
interface MagickoRelaxedProps extends React.SVGProps<SVGSVGElement> {
|
|
14300
|
+
size?: number | string;
|
|
14301
|
+
}
|
|
14302
|
+
/**
|
|
14303
|
+
* MagickoRelaxed icon component
|
|
14304
|
+
* @example
|
|
14305
|
+
* ```tsx
|
|
14306
|
+
* import { MagickoRelaxed } from 'magick-icons';
|
|
14307
|
+
*
|
|
14308
|
+
* <MagickoRelaxed size={24} className="text-blue-500" strokeWidth={2} />
|
|
14309
|
+
* ```
|
|
14310
|
+
*/
|
|
14311
|
+
declare const MagickoRelaxed: React.ForwardRefExoticComponent<Omit<MagickoRelaxedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14312
|
+
|
|
14313
|
+
/**
|
|
14314
|
+
* Props for the MagickoRepeatArrow icon component
|
|
14315
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14316
|
+
*/
|
|
14317
|
+
interface MagickoRepeatArrowProps extends React.SVGProps<SVGSVGElement> {
|
|
14318
|
+
size?: number | string;
|
|
14319
|
+
}
|
|
14320
|
+
/**
|
|
14321
|
+
* MagickoRepeatArrow icon component
|
|
14322
|
+
* @example
|
|
14323
|
+
* ```tsx
|
|
14324
|
+
* import { MagickoRepeatArrow } from 'magick-icons';
|
|
14325
|
+
*
|
|
14326
|
+
* <MagickoRepeatArrow size={24} className="text-blue-500" strokeWidth={2} />
|
|
14327
|
+
* ```
|
|
14328
|
+
*/
|
|
14329
|
+
declare const MagickoRepeatArrow: React.ForwardRefExoticComponent<Omit<MagickoRepeatArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14330
|
+
|
|
14331
|
+
/**
|
|
14332
|
+
* Props for the MagickoRepeatArrows icon component
|
|
14333
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14334
|
+
*/
|
|
14335
|
+
interface MagickoRepeatArrowsProps extends React.SVGProps<SVGSVGElement> {
|
|
14336
|
+
size?: number | string;
|
|
14337
|
+
}
|
|
14338
|
+
/**
|
|
14339
|
+
* MagickoRepeatArrows icon component
|
|
14340
|
+
* @example
|
|
14341
|
+
* ```tsx
|
|
14342
|
+
* import { MagickoRepeatArrows } from 'magick-icons';
|
|
14343
|
+
*
|
|
14344
|
+
* <MagickoRepeatArrows size={24} className="text-blue-500" strokeWidth={2} />
|
|
14345
|
+
* ```
|
|
14346
|
+
*/
|
|
14347
|
+
declare const MagickoRepeatArrows: React.ForwardRefExoticComponent<Omit<MagickoRepeatArrowsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14348
|
+
|
|
14349
|
+
/**
|
|
14350
|
+
* Props for the MagickoRepeatCircle icon component
|
|
14351
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14352
|
+
*/
|
|
14353
|
+
interface MagickoRepeatCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
14354
|
+
size?: number | string;
|
|
14355
|
+
}
|
|
14356
|
+
/**
|
|
14357
|
+
* MagickoRepeatCircle icon component
|
|
14358
|
+
* @example
|
|
14359
|
+
* ```tsx
|
|
14360
|
+
* import { MagickoRepeatCircle } from 'magick-icons';
|
|
14361
|
+
*
|
|
14362
|
+
* <MagickoRepeatCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
14363
|
+
* ```
|
|
14364
|
+
*/
|
|
14365
|
+
declare const MagickoRepeatCircle: React.ForwardRefExoticComponent<Omit<MagickoRepeatCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14366
|
+
|
|
14367
|
+
/**
|
|
14368
|
+
* Props for the MagickoRepeateMusic icon component
|
|
14369
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14370
|
+
*/
|
|
14371
|
+
interface MagickoRepeateMusicProps extends React.SVGProps<SVGSVGElement> {
|
|
14372
|
+
size?: number | string;
|
|
14373
|
+
}
|
|
14374
|
+
/**
|
|
14375
|
+
* MagickoRepeateMusic icon component
|
|
14376
|
+
* @example
|
|
14377
|
+
* ```tsx
|
|
14378
|
+
* import { MagickoRepeateMusic } from 'magick-icons';
|
|
14379
|
+
*
|
|
14380
|
+
* <MagickoRepeateMusic size={24} className="text-blue-500" strokeWidth={2} />
|
|
14381
|
+
* ```
|
|
14382
|
+
*/
|
|
14383
|
+
declare const MagickoRepeateMusic: React.ForwardRefExoticComponent<Omit<MagickoRepeateMusicProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14384
|
+
|
|
14385
|
+
/**
|
|
14386
|
+
* Props for the MagickoRepeateOne icon component
|
|
14387
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14388
|
+
*/
|
|
14389
|
+
interface MagickoRepeateOneProps extends React.SVGProps<SVGSVGElement> {
|
|
14390
|
+
size?: number | string;
|
|
14391
|
+
}
|
|
14392
|
+
/**
|
|
14393
|
+
* MagickoRepeateOne icon component
|
|
14394
|
+
* @example
|
|
14395
|
+
* ```tsx
|
|
14396
|
+
* import { MagickoRepeateOne } from 'magick-icons';
|
|
14397
|
+
*
|
|
14398
|
+
* <MagickoRepeateOne size={24} className="text-blue-500" strokeWidth={2} />
|
|
14399
|
+
* ```
|
|
14400
|
+
*/
|
|
14401
|
+
declare const MagickoRepeateOne: React.ForwardRefExoticComponent<Omit<MagickoRepeateOneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14402
|
+
|
|
14403
|
+
/**
|
|
14404
|
+
* Props for the MagickoReverseTimeArrow icon component
|
|
14405
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14406
|
+
*/
|
|
14407
|
+
interface MagickoReverseTimeArrowProps extends React.SVGProps<SVGSVGElement> {
|
|
14408
|
+
size?: number | string;
|
|
14409
|
+
}
|
|
14410
|
+
/**
|
|
14411
|
+
* MagickoReverseTimeArrow icon component
|
|
14412
|
+
* @example
|
|
14413
|
+
* ```tsx
|
|
14414
|
+
* import { MagickoReverseTimeArrow } from 'magick-icons';
|
|
14415
|
+
*
|
|
14416
|
+
* <MagickoReverseTimeArrow size={24} className="text-blue-500" strokeWidth={2} />
|
|
14417
|
+
* ```
|
|
14418
|
+
*/
|
|
14419
|
+
declare const MagickoReverseTimeArrow: React.ForwardRefExoticComponent<Omit<MagickoReverseTimeArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14420
|
+
|
|
14421
|
+
/**
|
|
14422
|
+
* Props for the MagickoRightCloud icon component
|
|
14423
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14424
|
+
*/
|
|
14425
|
+
interface MagickoRightCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
14426
|
+
size?: number | string;
|
|
14427
|
+
}
|
|
14428
|
+
/**
|
|
14429
|
+
* MagickoRightCloud icon component
|
|
14430
|
+
* @example
|
|
14431
|
+
* ```tsx
|
|
14432
|
+
* import { MagickoRightCloud } from 'magick-icons';
|
|
14433
|
+
*
|
|
14434
|
+
* <MagickoRightCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
14435
|
+
* ```
|
|
14436
|
+
*/
|
|
14437
|
+
declare const MagickoRightCloud: React.ForwardRefExoticComponent<Omit<MagickoRightCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14438
|
+
|
|
14439
|
+
/**
|
|
14440
|
+
* Props for the MagickoRotateLeft icon component
|
|
14441
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14442
|
+
*/
|
|
14443
|
+
interface MagickoRotateLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
14444
|
+
size?: number | string;
|
|
14445
|
+
}
|
|
14446
|
+
/**
|
|
14447
|
+
* MagickoRotateLeft icon component
|
|
14448
|
+
* @example
|
|
14449
|
+
* ```tsx
|
|
14450
|
+
* import { MagickoRotateLeft } from 'magick-icons';
|
|
14451
|
+
*
|
|
14452
|
+
* <MagickoRotateLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
14453
|
+
* ```
|
|
14454
|
+
*/
|
|
14455
|
+
declare const MagickoRotateLeft: React.ForwardRefExoticComponent<Omit<MagickoRotateLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14456
|
+
|
|
14457
|
+
/**
|
|
14458
|
+
* Props for the MagickoRotateLeft1 icon component
|
|
14459
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14460
|
+
*/
|
|
14461
|
+
interface MagickoRotateLeft1Props extends React.SVGProps<SVGSVGElement> {
|
|
14462
|
+
size?: number | string;
|
|
14463
|
+
}
|
|
14464
|
+
/**
|
|
14465
|
+
* MagickoRotateLeft1 icon component
|
|
14466
|
+
* @example
|
|
14467
|
+
* ```tsx
|
|
14468
|
+
* import { MagickoRotateLeft1 } from 'magick-icons';
|
|
14469
|
+
*
|
|
14470
|
+
* <MagickoRotateLeft1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
14471
|
+
* ```
|
|
14472
|
+
*/
|
|
14473
|
+
declare const MagickoRotateLeft1: React.ForwardRefExoticComponent<Omit<MagickoRotateLeft1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14474
|
+
|
|
14475
|
+
/**
|
|
14476
|
+
* Props for the MagickoRotateRight1 icon component
|
|
14477
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
14478
|
+
*/
|
|
14479
|
+
interface MagickoRotateRight1Props extends React.SVGProps<SVGSVGElement> {
|
|
14480
|
+
size?: number | string;
|
|
14481
|
+
}
|
|
14482
|
+
/**
|
|
14483
|
+
* MagickoRotateRight1 icon component
|
|
14484
|
+
* @example
|
|
14485
|
+
* ```tsx
|
|
14486
|
+
* import { MagickoRotateRight1 } from 'magick-icons';
|
|
14487
|
+
*
|
|
14488
|
+
* <MagickoRotateRight1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
14489
|
+
* ```
|
|
14490
|
+
*/
|
|
14491
|
+
declare const MagickoRotateRight1: React.ForwardRefExoticComponent<Omit<MagickoRotateRight1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
14492
|
+
|
|
13413
14493
|
/**
|
|
13414
14494
|
* Props for the Marketing icon component
|
|
13415
14495
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -13698,4 +14778,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
13698
14778
|
*/
|
|
13699
14779
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13700
14780
|
|
|
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 };
|
|
14781
|
+
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, MagickoMicrophone211, type MagickoMicrophone211Props, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, MagickoReceipt211, type MagickoReceipt211Props, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight1, type MagickoRotateRight1Props, 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 };
|