magick-icons 0.1.225 → 0.1.227

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.ts CHANGED
@@ -6372,23 +6372,1103 @@ interface MagickoCalendarTickProps extends React.SVGProps<SVGSVGElement> {
6372
6372
  */
6373
6373
  declare const MagickoCalendarTick: React.ForwardRefExoticComponent<Omit<MagickoCalendarTickProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6374
6374
 
6375
+ /**
6376
+ * Props for the MagickoCall icon component
6377
+ * @property {number | string} [size] - Size of the icon (default: 24)
6378
+ */
6379
+ interface MagickoCallProps extends React.SVGProps<SVGSVGElement> {
6380
+ size?: number | string;
6381
+ }
6382
+ /**
6383
+ * MagickoCall icon component
6384
+ * @example
6385
+ * ```tsx
6386
+ * import { MagickoCall } from 'magick-icons';
6387
+ *
6388
+ * <MagickoCall size={24} className="text-blue-500" strokeWidth={2} />
6389
+ * ```
6390
+ */
6391
+ declare const MagickoCall: React.ForwardRefExoticComponent<Omit<MagickoCallProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6392
+
6393
+ /**
6394
+ * Props for the MagickoCallAdd icon component
6395
+ * @property {number | string} [size] - Size of the icon (default: 24)
6396
+ */
6397
+ interface MagickoCallAddProps extends React.SVGProps<SVGSVGElement> {
6398
+ size?: number | string;
6399
+ }
6400
+ /**
6401
+ * MagickoCallAdd icon component
6402
+ * @example
6403
+ * ```tsx
6404
+ * import { MagickoCallAdd } from 'magick-icons';
6405
+ *
6406
+ * <MagickoCallAdd size={24} className="text-blue-500" strokeWidth={2} />
6407
+ * ```
6408
+ */
6409
+ declare const MagickoCallAdd: React.ForwardRefExoticComponent<Omit<MagickoCallAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6410
+
6411
+ /**
6412
+ * Props for the MagickoCallCalling icon component
6413
+ * @property {number | string} [size] - Size of the icon (default: 24)
6414
+ */
6415
+ interface MagickoCallCallingProps extends React.SVGProps<SVGSVGElement> {
6416
+ size?: number | string;
6417
+ }
6418
+ /**
6419
+ * MagickoCallCalling icon component
6420
+ * @example
6421
+ * ```tsx
6422
+ * import { MagickoCallCalling } from 'magick-icons';
6423
+ *
6424
+ * <MagickoCallCalling size={24} className="text-blue-500" strokeWidth={2} />
6425
+ * ```
6426
+ */
6427
+ declare const MagickoCallCalling: React.ForwardRefExoticComponent<Omit<MagickoCallCallingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6428
+
6429
+ /**
6430
+ * Props for the MagickoCallIncoming icon component
6431
+ * @property {number | string} [size] - Size of the icon (default: 24)
6432
+ */
6433
+ interface MagickoCallIncomingProps extends React.SVGProps<SVGSVGElement> {
6434
+ size?: number | string;
6435
+ }
6436
+ /**
6437
+ * MagickoCallIncoming icon component
6438
+ * @example
6439
+ * ```tsx
6440
+ * import { MagickoCallIncoming } from 'magick-icons';
6441
+ *
6442
+ * <MagickoCallIncoming size={24} className="text-blue-500" strokeWidth={2} />
6443
+ * ```
6444
+ */
6445
+ declare const MagickoCallIncoming: React.ForwardRefExoticComponent<Omit<MagickoCallIncomingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6446
+
6447
+ /**
6448
+ * Props for the MagickoCallMinus icon component
6449
+ * @property {number | string} [size] - Size of the icon (default: 24)
6450
+ */
6451
+ interface MagickoCallMinusProps extends React.SVGProps<SVGSVGElement> {
6452
+ size?: number | string;
6453
+ }
6454
+ /**
6455
+ * MagickoCallMinus icon component
6456
+ * @example
6457
+ * ```tsx
6458
+ * import { MagickoCallMinus } from 'magick-icons';
6459
+ *
6460
+ * <MagickoCallMinus size={24} className="text-blue-500" strokeWidth={2} />
6461
+ * ```
6462
+ */
6463
+ declare const MagickoCallMinus: React.ForwardRefExoticComponent<Omit<MagickoCallMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6464
+
6465
+ /**
6466
+ * Props for the MagickoCallOutgoing icon component
6467
+ * @property {number | string} [size] - Size of the icon (default: 24)
6468
+ */
6469
+ interface MagickoCallOutgoingProps extends React.SVGProps<SVGSVGElement> {
6470
+ size?: number | string;
6471
+ }
6472
+ /**
6473
+ * MagickoCallOutgoing icon component
6474
+ * @example
6475
+ * ```tsx
6476
+ * import { MagickoCallOutgoing } from 'magick-icons';
6477
+ *
6478
+ * <MagickoCallOutgoing size={24} className="text-blue-500" strokeWidth={2} />
6479
+ * ```
6480
+ */
6481
+ declare const MagickoCallOutgoing: React.ForwardRefExoticComponent<Omit<MagickoCallOutgoingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6482
+
6483
+ /**
6484
+ * Props for the MagickoCallReceived icon component
6485
+ * @property {number | string} [size] - Size of the icon (default: 24)
6486
+ */
6487
+ interface MagickoCallReceivedProps extends React.SVGProps<SVGSVGElement> {
6488
+ size?: number | string;
6489
+ }
6490
+ /**
6491
+ * MagickoCallReceived icon component
6492
+ * @example
6493
+ * ```tsx
6494
+ * import { MagickoCallReceived } from 'magick-icons';
6495
+ *
6496
+ * <MagickoCallReceived size={24} className="text-blue-500" strokeWidth={2} />
6497
+ * ```
6498
+ */
6499
+ declare const MagickoCallReceived: React.ForwardRefExoticComponent<Omit<MagickoCallReceivedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6500
+
6501
+ /**
6502
+ * Props for the MagickoCallRemove icon component
6503
+ * @property {number | string} [size] - Size of the icon (default: 24)
6504
+ */
6505
+ interface MagickoCallRemoveProps extends React.SVGProps<SVGSVGElement> {
6506
+ size?: number | string;
6507
+ }
6508
+ /**
6509
+ * MagickoCallRemove icon component
6510
+ * @example
6511
+ * ```tsx
6512
+ * import { MagickoCallRemove } from 'magick-icons';
6513
+ *
6514
+ * <MagickoCallRemove size={24} className="text-blue-500" strokeWidth={2} />
6515
+ * ```
6516
+ */
6517
+ declare const MagickoCallRemove: React.ForwardRefExoticComponent<Omit<MagickoCallRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6518
+
6519
+ /**
6520
+ * Props for the MagickoCallSlash icon component
6521
+ * @property {number | string} [size] - Size of the icon (default: 24)
6522
+ */
6523
+ interface MagickoCallSlashProps extends React.SVGProps<SVGSVGElement> {
6524
+ size?: number | string;
6525
+ }
6526
+ /**
6527
+ * MagickoCallSlash icon component
6528
+ * @example
6529
+ * ```tsx
6530
+ * import { MagickoCallSlash } from 'magick-icons';
6531
+ *
6532
+ * <MagickoCallSlash size={24} className="text-blue-500" strokeWidth={2} />
6533
+ * ```
6534
+ */
6535
+ declare const MagickoCallSlash: React.ForwardRefExoticComponent<Omit<MagickoCallSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6536
+
6537
+ /**
6538
+ * Props for the MagickoCamera icon component
6539
+ * @property {number | string} [size] - Size of the icon (default: 24)
6540
+ */
6541
+ interface MagickoCameraProps extends React.SVGProps<SVGSVGElement> {
6542
+ size?: number | string;
6543
+ }
6544
+ /**
6545
+ * MagickoCamera icon component
6546
+ * @example
6547
+ * ```tsx
6548
+ * import { MagickoCamera } from 'magick-icons';
6549
+ *
6550
+ * <MagickoCamera size={24} className="text-blue-500" strokeWidth={2} />
6551
+ * ```
6552
+ */
6553
+ declare const MagickoCamera: React.ForwardRefExoticComponent<Omit<MagickoCameraProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6554
+
6555
+ /**
6556
+ * Props for the MagickoCaptions icon component
6557
+ * @property {number | string} [size] - Size of the icon (default: 24)
6558
+ */
6559
+ interface MagickoCaptionsProps extends React.SVGProps<SVGSVGElement> {
6560
+ size?: number | string;
6561
+ }
6562
+ /**
6563
+ * MagickoCaptions icon component
6564
+ * @example
6565
+ * ```tsx
6566
+ * import { MagickoCaptions } from 'magick-icons';
6567
+ *
6568
+ * <MagickoCaptions size={24} className="text-blue-500" strokeWidth={2} />
6569
+ * ```
6570
+ */
6571
+ declare const MagickoCaptions: React.ForwardRefExoticComponent<Omit<MagickoCaptionsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6572
+
6573
+ /**
6574
+ * Props for the MagickoCaptionsUnavailable icon component
6575
+ * @property {number | string} [size] - Size of the icon (default: 24)
6576
+ */
6577
+ interface MagickoCaptionsUnavailableProps extends React.SVGProps<SVGSVGElement> {
6578
+ size?: number | string;
6579
+ }
6580
+ /**
6581
+ * MagickoCaptionsUnavailable icon component
6582
+ * @example
6583
+ * ```tsx
6584
+ * import { MagickoCaptionsUnavailable } from 'magick-icons';
6585
+ *
6586
+ * <MagickoCaptionsUnavailable size={24} className="text-blue-500" strokeWidth={2} />
6587
+ * ```
6588
+ */
6589
+ declare const MagickoCaptionsUnavailable: React.ForwardRefExoticComponent<Omit<MagickoCaptionsUnavailableProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6590
+
6591
+ /**
6592
+ * Props for the MagickoCaptionsUnavailable2 icon component
6593
+ * @property {number | string} [size] - Size of the icon (default: 24)
6594
+ */
6595
+ interface MagickoCaptionsUnavailable2Props extends React.SVGProps<SVGSVGElement> {
6596
+ size?: number | string;
6597
+ }
6598
+ /**
6599
+ * MagickoCaptionsUnavailable2 icon component
6600
+ * @example
6601
+ * ```tsx
6602
+ * import { MagickoCaptionsUnavailable2 } from 'magick-icons';
6603
+ *
6604
+ * <MagickoCaptionsUnavailable2 size={24} className="text-blue-500" strokeWidth={2} />
6605
+ * ```
6606
+ */
6607
+ declare const MagickoCaptionsUnavailable2: React.ForwardRefExoticComponent<Omit<MagickoCaptionsUnavailable2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6608
+
6609
+ /**
6610
+ * Props for the MagickoCaptionsUnavailable21 icon component
6611
+ * @property {number | string} [size] - Size of the icon (default: 24)
6612
+ */
6613
+ interface MagickoCaptionsUnavailable21Props extends React.SVGProps<SVGSVGElement> {
6614
+ size?: number | string;
6615
+ }
6616
+ /**
6617
+ * MagickoCaptionsUnavailable21 icon component
6618
+ * @example
6619
+ * ```tsx
6620
+ * import { MagickoCaptionsUnavailable21 } from 'magick-icons';
6621
+ *
6622
+ * <MagickoCaptionsUnavailable21 size={24} className="text-blue-500" strokeWidth={2} />
6623
+ * ```
6624
+ */
6625
+ declare const MagickoCaptionsUnavailable21: React.ForwardRefExoticComponent<Omit<MagickoCaptionsUnavailable21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6626
+
6627
+ /**
6628
+ * Props for the MagickoCar icon component
6629
+ * @property {number | string} [size] - Size of the icon (default: 24)
6630
+ */
6631
+ interface MagickoCarProps extends React.SVGProps<SVGSVGElement> {
6632
+ size?: number | string;
6633
+ }
6634
+ /**
6635
+ * MagickoCar icon component
6636
+ * @example
6637
+ * ```tsx
6638
+ * import { MagickoCar } from 'magick-icons';
6639
+ *
6640
+ * <MagickoCar size={24} className="text-blue-500" strokeWidth={2} />
6641
+ * ```
6642
+ */
6643
+ declare const MagickoCar: React.ForwardRefExoticComponent<Omit<MagickoCarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6644
+
6645
+ /**
6646
+ * Props for the MagickoCar1 icon component
6647
+ * @property {number | string} [size] - Size of the icon (default: 24)
6648
+ */
6649
+ interface MagickoCar1Props extends React.SVGProps<SVGSVGElement> {
6650
+ size?: number | string;
6651
+ }
6652
+ /**
6653
+ * MagickoCar1 icon component
6654
+ * @example
6655
+ * ```tsx
6656
+ * import { MagickoCar1 } from 'magick-icons';
6657
+ *
6658
+ * <MagickoCar1 size={24} className="text-blue-500" strokeWidth={2} />
6659
+ * ```
6660
+ */
6661
+ declare const MagickoCar1: React.ForwardRefExoticComponent<Omit<MagickoCar1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6662
+
6663
+ /**
6664
+ * Props for the MagickoCard icon component
6665
+ * @property {number | string} [size] - Size of the icon (default: 24)
6666
+ */
6667
+ interface MagickoCardProps extends React.SVGProps<SVGSVGElement> {
6668
+ size?: number | string;
6669
+ }
6670
+ /**
6671
+ * MagickoCard icon component
6672
+ * @example
6673
+ * ```tsx
6674
+ * import { MagickoCard } from 'magick-icons';
6675
+ *
6676
+ * <MagickoCard size={24} className="text-blue-500" strokeWidth={2} />
6677
+ * ```
6678
+ */
6679
+ declare const MagickoCard: React.ForwardRefExoticComponent<Omit<MagickoCardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6680
+
6681
+ /**
6682
+ * Props for the MagickoCardAdd icon component
6683
+ * @property {number | string} [size] - Size of the icon (default: 24)
6684
+ */
6685
+ interface MagickoCardAddProps extends React.SVGProps<SVGSVGElement> {
6686
+ size?: number | string;
6687
+ }
6688
+ /**
6689
+ * MagickoCardAdd icon component
6690
+ * @example
6691
+ * ```tsx
6692
+ * import { MagickoCardAdd } from 'magick-icons';
6693
+ *
6694
+ * <MagickoCardAdd size={24} className="text-blue-500" strokeWidth={2} />
6695
+ * ```
6696
+ */
6697
+ declare const MagickoCardAdd: React.ForwardRefExoticComponent<Omit<MagickoCardAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6698
+
6699
+ /**
6700
+ * Props for the MagickoCardCoin1 icon component
6701
+ * @property {number | string} [size] - Size of the icon (default: 24)
6702
+ */
6703
+ interface MagickoCardCoin1Props extends React.SVGProps<SVGSVGElement> {
6704
+ size?: number | string;
6705
+ }
6706
+ /**
6707
+ * MagickoCardCoin1 icon component
6708
+ * @example
6709
+ * ```tsx
6710
+ * import { MagickoCardCoin1 } from 'magick-icons';
6711
+ *
6712
+ * <MagickoCardCoin1 size={24} className="text-blue-500" strokeWidth={2} />
6713
+ * ```
6714
+ */
6715
+ declare const MagickoCardCoin1: React.ForwardRefExoticComponent<Omit<MagickoCardCoin1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6716
+
6717
+ /**
6718
+ * Props for the MagickoCardSlash icon component
6719
+ * @property {number | string} [size] - Size of the icon (default: 24)
6720
+ */
6721
+ interface MagickoCardSlashProps extends React.SVGProps<SVGSVGElement> {
6722
+ size?: number | string;
6723
+ }
6724
+ /**
6725
+ * MagickoCardSlash icon component
6726
+ * @example
6727
+ * ```tsx
6728
+ * import { MagickoCardSlash } from 'magick-icons';
6729
+ *
6730
+ * <MagickoCardSlash size={24} className="text-blue-500" strokeWidth={2} />
6731
+ * ```
6732
+ */
6733
+ declare const MagickoCardSlash: React.ForwardRefExoticComponent<Omit<MagickoCardSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6734
+
6735
+ /**
6736
+ * Props for the MagickoCards icon component
6737
+ * @property {number | string} [size] - Size of the icon (default: 24)
6738
+ */
6739
+ interface MagickoCardsProps extends React.SVGProps<SVGSVGElement> {
6740
+ size?: number | string;
6741
+ }
6742
+ /**
6743
+ * MagickoCards icon component
6744
+ * @example
6745
+ * ```tsx
6746
+ * import { MagickoCards } from 'magick-icons';
6747
+ *
6748
+ * <MagickoCards size={24} className="text-blue-500" strokeWidth={2} />
6749
+ * ```
6750
+ */
6751
+ declare const MagickoCards: React.ForwardRefExoticComponent<Omit<MagickoCardsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6752
+
6753
+ /**
6754
+ * Props for the MagickoCards1 icon component
6755
+ * @property {number | string} [size] - Size of the icon (default: 24)
6756
+ */
6757
+ interface MagickoCards1Props extends React.SVGProps<SVGSVGElement> {
6758
+ size?: number | string;
6759
+ }
6760
+ /**
6761
+ * MagickoCards1 icon component
6762
+ * @example
6763
+ * ```tsx
6764
+ * import { MagickoCards1 } from 'magick-icons';
6765
+ *
6766
+ * <MagickoCards1 size={24} className="text-blue-500" strokeWidth={2} />
6767
+ * ```
6768
+ */
6769
+ declare const MagickoCards1: React.ForwardRefExoticComponent<Omit<MagickoCards1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6770
+
6771
+ /**
6772
+ * Props for the MagickoCategory icon component
6773
+ * @property {number | string} [size] - Size of the icon (default: 24)
6774
+ */
6775
+ interface MagickoCategoryProps extends React.SVGProps<SVGSVGElement> {
6776
+ size?: number | string;
6777
+ }
6778
+ /**
6779
+ * MagickoCategory icon component
6780
+ * @example
6781
+ * ```tsx
6782
+ * import { MagickoCategory } from 'magick-icons';
6783
+ *
6784
+ * <MagickoCategory size={24} className="text-blue-500" strokeWidth={2} />
6785
+ * ```
6786
+ */
6787
+ declare const MagickoCategory: React.ForwardRefExoticComponent<Omit<MagickoCategoryProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6788
+
6789
+ /**
6790
+ * Props for the MagickoCategory2 icon component
6791
+ * @property {number | string} [size] - Size of the icon (default: 24)
6792
+ */
6793
+ interface MagickoCategory2Props extends React.SVGProps<SVGSVGElement> {
6794
+ size?: number | string;
6795
+ }
6796
+ /**
6797
+ * MagickoCategory2 icon component
6798
+ * @example
6799
+ * ```tsx
6800
+ * import { MagickoCategory2 } from 'magick-icons';
6801
+ *
6802
+ * <MagickoCategory2 size={24} className="text-blue-500" strokeWidth={2} />
6803
+ * ```
6804
+ */
6805
+ declare const MagickoCategory2: React.ForwardRefExoticComponent<Omit<MagickoCategory2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6806
+
6807
+ /**
6808
+ * Props for the MagickoChart icon component
6809
+ * @property {number | string} [size] - Size of the icon (default: 24)
6810
+ */
6811
+ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
6812
+ size?: number | string;
6813
+ }
6814
+ /**
6815
+ * MagickoChart icon component
6816
+ * @example
6817
+ * ```tsx
6818
+ * import { MagickoChart } from 'magick-icons';
6819
+ *
6820
+ * <MagickoChart size={24} className="text-blue-500" strokeWidth={2} />
6821
+ * ```
6822
+ */
6823
+ declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6824
+
6825
+ /**
6826
+ * Props for the MagickoChart1 icon component
6827
+ * @property {number | string} [size] - Size of the icon (default: 24)
6828
+ */
6829
+ interface MagickoChart1Props extends React.SVGProps<SVGSVGElement> {
6830
+ size?: number | string;
6831
+ }
6832
+ /**
6833
+ * MagickoChart1 icon component
6834
+ * @example
6835
+ * ```tsx
6836
+ * import { MagickoChart1 } from 'magick-icons';
6837
+ *
6838
+ * <MagickoChart1 size={24} className="text-blue-500" strokeWidth={2} />
6839
+ * ```
6840
+ */
6841
+ declare const MagickoChart1: React.ForwardRefExoticComponent<Omit<MagickoChart1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6842
+
6843
+ /**
6844
+ * Props for the MagickoChart2 icon component
6845
+ * @property {number | string} [size] - Size of the icon (default: 24)
6846
+ */
6847
+ interface MagickoChart2Props extends React.SVGProps<SVGSVGElement> {
6848
+ size?: number | string;
6849
+ }
6850
+ /**
6851
+ * MagickoChart2 icon component
6852
+ * @example
6853
+ * ```tsx
6854
+ * import { MagickoChart2 } from 'magick-icons';
6855
+ *
6856
+ * <MagickoChart2 size={24} className="text-blue-500" strokeWidth={2} />
6857
+ * ```
6858
+ */
6859
+ declare const MagickoChart2: React.ForwardRefExoticComponent<Omit<MagickoChart2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6860
+
6861
+ /**
6862
+ * Props for the MagickoChart21 icon component
6863
+ * @property {number | string} [size] - Size of the icon (default: 24)
6864
+ */
6865
+ interface MagickoChart21Props extends React.SVGProps<SVGSVGElement> {
6866
+ size?: number | string;
6867
+ }
6868
+ /**
6869
+ * MagickoChart21 icon component
6870
+ * @example
6871
+ * ```tsx
6872
+ * import { MagickoChart21 } from 'magick-icons';
6873
+ *
6874
+ * <MagickoChart21 size={24} className="text-blue-500" strokeWidth={2} />
6875
+ * ```
6876
+ */
6877
+ declare const MagickoChart21: React.ForwardRefExoticComponent<Omit<MagickoChart21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6878
+
6879
+ /**
6880
+ * Props for the MagickoChart3 icon component
6881
+ * @property {number | string} [size] - Size of the icon (default: 24)
6882
+ */
6883
+ interface MagickoChart3Props extends React.SVGProps<SVGSVGElement> {
6884
+ size?: number | string;
6885
+ }
6886
+ /**
6887
+ * MagickoChart3 icon component
6888
+ * @example
6889
+ * ```tsx
6890
+ * import { MagickoChart3 } from 'magick-icons';
6891
+ *
6892
+ * <MagickoChart3 size={24} className="text-blue-500" strokeWidth={2} />
6893
+ * ```
6894
+ */
6895
+ declare const MagickoChart3: React.ForwardRefExoticComponent<Omit<MagickoChart3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6896
+
6897
+ /**
6898
+ * Props for the MagickoChart31 icon component
6899
+ * @property {number | string} [size] - Size of the icon (default: 24)
6900
+ */
6901
+ interface MagickoChart31Props extends React.SVGProps<SVGSVGElement> {
6902
+ size?: number | string;
6903
+ }
6904
+ /**
6905
+ * MagickoChart31 icon component
6906
+ * @example
6907
+ * ```tsx
6908
+ * import { MagickoChart31 } from 'magick-icons';
6909
+ *
6910
+ * <MagickoChart31 size={24} className="text-blue-500" strokeWidth={2} />
6911
+ * ```
6912
+ */
6913
+ declare const MagickoChart31: React.ForwardRefExoticComponent<Omit<MagickoChart31Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6914
+
6915
+ /**
6916
+ * Props for the MagickoChart4 icon component
6917
+ * @property {number | string} [size] - Size of the icon (default: 24)
6918
+ */
6919
+ interface MagickoChart4Props extends React.SVGProps<SVGSVGElement> {
6920
+ size?: number | string;
6921
+ }
6922
+ /**
6923
+ * MagickoChart4 icon component
6924
+ * @example
6925
+ * ```tsx
6926
+ * import { MagickoChart4 } from 'magick-icons';
6927
+ *
6928
+ * <MagickoChart4 size={24} className="text-blue-500" strokeWidth={2} />
6929
+ * ```
6930
+ */
6931
+ declare const MagickoChart4: React.ForwardRefExoticComponent<Omit<MagickoChart4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6932
+
6933
+ /**
6934
+ * Props for the MagickoChart5 icon component
6935
+ * @property {number | string} [size] - Size of the icon (default: 24)
6936
+ */
6937
+ interface MagickoChart5Props extends React.SVGProps<SVGSVGElement> {
6938
+ size?: number | string;
6939
+ }
6940
+ /**
6941
+ * MagickoChart5 icon component
6942
+ * @example
6943
+ * ```tsx
6944
+ * import { MagickoChart5 } from 'magick-icons';
6945
+ *
6946
+ * <MagickoChart5 size={24} className="text-blue-500" strokeWidth={2} />
6947
+ * ```
6948
+ */
6949
+ declare const MagickoChart5: React.ForwardRefExoticComponent<Omit<MagickoChart5Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6950
+
6951
+ /**
6952
+ * Props for the MagickoChartFail icon component
6953
+ * @property {number | string} [size] - Size of the icon (default: 24)
6954
+ */
6955
+ interface MagickoChartFailProps extends React.SVGProps<SVGSVGElement> {
6956
+ size?: number | string;
6957
+ }
6958
+ /**
6959
+ * MagickoChartFail icon component
6960
+ * @example
6961
+ * ```tsx
6962
+ * import { MagickoChartFail } from 'magick-icons';
6963
+ *
6964
+ * <MagickoChartFail size={24} className="text-blue-500" strokeWidth={2} />
6965
+ * ```
6966
+ */
6967
+ declare const MagickoChartFail: React.ForwardRefExoticComponent<Omit<MagickoChartFailProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6968
+
6969
+ /**
6970
+ * Props for the MagickoChartSquare icon component
6971
+ * @property {number | string} [size] - Size of the icon (default: 24)
6972
+ */
6973
+ interface MagickoChartSquareProps extends React.SVGProps<SVGSVGElement> {
6974
+ size?: number | string;
6975
+ }
6976
+ /**
6977
+ * MagickoChartSquare icon component
6978
+ * @example
6979
+ * ```tsx
6980
+ * import { MagickoChartSquare } from 'magick-icons';
6981
+ *
6982
+ * <MagickoChartSquare size={24} className="text-blue-500" strokeWidth={2} />
6983
+ * ```
6984
+ */
6985
+ declare const MagickoChartSquare: React.ForwardRefExoticComponent<Omit<MagickoChartSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6986
+
6987
+ /**
6988
+ * Props for the MagickoChartSquare1 icon component
6989
+ * @property {number | string} [size] - Size of the icon (default: 24)
6990
+ */
6991
+ interface MagickoChartSquare1Props extends React.SVGProps<SVGSVGElement> {
6992
+ size?: number | string;
6993
+ }
6994
+ /**
6995
+ * MagickoChartSquare1 icon component
6996
+ * @example
6997
+ * ```tsx
6998
+ * import { MagickoChartSquare1 } from 'magick-icons';
6999
+ *
7000
+ * <MagickoChartSquare1 size={24} className="text-blue-500" strokeWidth={2} />
7001
+ * ```
7002
+ */
7003
+ declare const MagickoChartSquare1: React.ForwardRefExoticComponent<Omit<MagickoChartSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7004
+
7005
+ /**
7006
+ * Props for the MagickoChartSquare2 icon component
7007
+ * @property {number | string} [size] - Size of the icon (default: 24)
7008
+ */
7009
+ interface MagickoChartSquare2Props extends React.SVGProps<SVGSVGElement> {
7010
+ size?: number | string;
7011
+ }
7012
+ /**
7013
+ * MagickoChartSquare2 icon component
7014
+ * @example
7015
+ * ```tsx
7016
+ * import { MagickoChartSquare2 } from 'magick-icons';
7017
+ *
7018
+ * <MagickoChartSquare2 size={24} className="text-blue-500" strokeWidth={2} />
7019
+ * ```
7020
+ */
7021
+ declare const MagickoChartSquare2: React.ForwardRefExoticComponent<Omit<MagickoChartSquare2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7022
+
7023
+ /**
7024
+ * Props for the MagickoChartSuccess icon component
7025
+ * @property {number | string} [size] - Size of the icon (default: 24)
7026
+ */
7027
+ interface MagickoChartSuccessProps extends React.SVGProps<SVGSVGElement> {
7028
+ size?: number | string;
7029
+ }
7030
+ /**
7031
+ * MagickoChartSuccess icon component
7032
+ * @example
7033
+ * ```tsx
7034
+ * import { MagickoChartSuccess } from 'magick-icons';
7035
+ *
7036
+ * <MagickoChartSuccess size={24} className="text-blue-500" strokeWidth={2} />
7037
+ * ```
7038
+ */
7039
+ declare const MagickoChartSuccess: React.ForwardRefExoticComponent<Omit<MagickoChartSuccessProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7040
+
7041
+ /**
7042
+ * Props for the MagickoChatbox icon component
7043
+ * @property {number | string} [size] - Size of the icon (default: 24)
7044
+ */
7045
+ interface MagickoChatboxProps extends React.SVGProps<SVGSVGElement> {
7046
+ size?: number | string;
7047
+ }
7048
+ /**
7049
+ * MagickoChatbox icon component
7050
+ * @example
7051
+ * ```tsx
7052
+ * import { MagickoChatbox } from 'magick-icons';
7053
+ *
7054
+ * <MagickoChatbox size={24} className="text-blue-500" strokeWidth={2} />
7055
+ * ```
7056
+ */
7057
+ declare const MagickoChatbox: React.ForwardRefExoticComponent<Omit<MagickoChatboxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7058
+
6375
7059
  /**
6376
7060
  * Props for the MagickoCheck icon component
6377
7061
  * @property {number | string} [size] - Size of the icon (default: 24)
6378
7062
  */
6379
- interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
7063
+ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
7064
+ size?: number | string;
7065
+ }
7066
+ /**
7067
+ * MagickoCheck icon component
7068
+ * @example
7069
+ * ```tsx
7070
+ * import { MagickoCheck } from 'magick-icons';
7071
+ *
7072
+ * <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
7073
+ * ```
7074
+ */
7075
+ declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7076
+
7077
+ /**
7078
+ * Props for the MagickoCirclefinger icon component
7079
+ * @property {number | string} [size] - Size of the icon (default: 24)
7080
+ */
7081
+ interface MagickoCirclefingerProps extends React.SVGProps<SVGSVGElement> {
7082
+ size?: number | string;
7083
+ }
7084
+ /**
7085
+ * MagickoCirclefinger icon component
7086
+ * @example
7087
+ * ```tsx
7088
+ * import { MagickoCirclefinger } from 'magick-icons';
7089
+ *
7090
+ * <MagickoCirclefinger size={24} className="text-blue-500" strokeWidth={2} />
7091
+ * ```
7092
+ */
7093
+ declare const MagickoCirclefinger: React.ForwardRefExoticComponent<Omit<MagickoCirclefingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7094
+
7095
+ /**
7096
+ * Props for the MagickoClipboard icon component
7097
+ * @property {number | string} [size] - Size of the icon (default: 24)
7098
+ */
7099
+ interface MagickoClipboardProps extends React.SVGProps<SVGSVGElement> {
6380
7100
  size?: number | string;
6381
7101
  }
6382
7102
  /**
6383
- * MagickoCheck icon component
7103
+ * MagickoClipboard icon component
6384
7104
  * @example
6385
7105
  * ```tsx
6386
- * import { MagickoCheck } from 'magick-icons';
7106
+ * import { MagickoClipboard } from 'magick-icons';
6387
7107
  *
6388
- * <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
7108
+ * <MagickoClipboard size={24} className="text-blue-500" strokeWidth={2} />
6389
7109
  * ```
6390
7110
  */
6391
- declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7111
+ declare const MagickoClipboard: React.ForwardRefExoticComponent<Omit<MagickoClipboardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7112
+
7113
+ /**
7114
+ * Props for the MagickoClipboardClose icon component
7115
+ * @property {number | string} [size] - Size of the icon (default: 24)
7116
+ */
7117
+ interface MagickoClipboardCloseProps extends React.SVGProps<SVGSVGElement> {
7118
+ size?: number | string;
7119
+ }
7120
+ /**
7121
+ * MagickoClipboardClose icon component
7122
+ * @example
7123
+ * ```tsx
7124
+ * import { MagickoClipboardClose } from 'magick-icons';
7125
+ *
7126
+ * <MagickoClipboardClose size={24} className="text-blue-500" strokeWidth={2} />
7127
+ * ```
7128
+ */
7129
+ declare const MagickoClipboardClose: React.ForwardRefExoticComponent<Omit<MagickoClipboardCloseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7130
+
7131
+ /**
7132
+ * Props for the MagickoClipboardExport icon component
7133
+ * @property {number | string} [size] - Size of the icon (default: 24)
7134
+ */
7135
+ interface MagickoClipboardExportProps extends React.SVGProps<SVGSVGElement> {
7136
+ size?: number | string;
7137
+ }
7138
+ /**
7139
+ * MagickoClipboardExport icon component
7140
+ * @example
7141
+ * ```tsx
7142
+ * import { MagickoClipboardExport } from 'magick-icons';
7143
+ *
7144
+ * <MagickoClipboardExport size={24} className="text-blue-500" strokeWidth={2} />
7145
+ * ```
7146
+ */
7147
+ declare const MagickoClipboardExport: React.ForwardRefExoticComponent<Omit<MagickoClipboardExportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7148
+
7149
+ /**
7150
+ * Props for the MagickoClipboardImport icon component
7151
+ * @property {number | string} [size] - Size of the icon (default: 24)
7152
+ */
7153
+ interface MagickoClipboardImportProps extends React.SVGProps<SVGSVGElement> {
7154
+ size?: number | string;
7155
+ }
7156
+ /**
7157
+ * MagickoClipboardImport icon component
7158
+ * @example
7159
+ * ```tsx
7160
+ * import { MagickoClipboardImport } from 'magick-icons';
7161
+ *
7162
+ * <MagickoClipboardImport size={24} className="text-blue-500" strokeWidth={2} />
7163
+ * ```
7164
+ */
7165
+ declare const MagickoClipboardImport: React.ForwardRefExoticComponent<Omit<MagickoClipboardImportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7166
+
7167
+ /**
7168
+ * Props for the MagickoClipboardText icon component
7169
+ * @property {number | string} [size] - Size of the icon (default: 24)
7170
+ */
7171
+ interface MagickoClipboardTextProps extends React.SVGProps<SVGSVGElement> {
7172
+ size?: number | string;
7173
+ }
7174
+ /**
7175
+ * MagickoClipboardText icon component
7176
+ * @example
7177
+ * ```tsx
7178
+ * import { MagickoClipboardText } from 'magick-icons';
7179
+ *
7180
+ * <MagickoClipboardText size={24} className="text-blue-500" strokeWidth={2} />
7181
+ * ```
7182
+ */
7183
+ declare const MagickoClipboardText: React.ForwardRefExoticComponent<Omit<MagickoClipboardTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7184
+
7185
+ /**
7186
+ * Props for the MagickoClipboardTick icon component
7187
+ * @property {number | string} [size] - Size of the icon (default: 24)
7188
+ */
7189
+ interface MagickoClipboardTickProps extends React.SVGProps<SVGSVGElement> {
7190
+ size?: number | string;
7191
+ }
7192
+ /**
7193
+ * MagickoClipboardTick icon component
7194
+ * @example
7195
+ * ```tsx
7196
+ * import { MagickoClipboardTick } from 'magick-icons';
7197
+ *
7198
+ * <MagickoClipboardTick size={24} className="text-blue-500" strokeWidth={2} />
7199
+ * ```
7200
+ */
7201
+ declare const MagickoClipboardTick: React.ForwardRefExoticComponent<Omit<MagickoClipboardTickProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7202
+
7203
+ /**
7204
+ * Props for the MagickoClock icon component
7205
+ * @property {number | string} [size] - Size of the icon (default: 24)
7206
+ */
7207
+ interface MagickoClockProps extends React.SVGProps<SVGSVGElement> {
7208
+ size?: number | string;
7209
+ }
7210
+ /**
7211
+ * MagickoClock icon component
7212
+ * @example
7213
+ * ```tsx
7214
+ * import { MagickoClock } from 'magick-icons';
7215
+ *
7216
+ * <MagickoClock size={24} className="text-blue-500" strokeWidth={2} />
7217
+ * ```
7218
+ */
7219
+ declare const MagickoClock: React.ForwardRefExoticComponent<Omit<MagickoClockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7220
+
7221
+ /**
7222
+ * Props for the MagickoClock1 icon component
7223
+ * @property {number | string} [size] - Size of the icon (default: 24)
7224
+ */
7225
+ interface MagickoClock1Props extends React.SVGProps<SVGSVGElement> {
7226
+ size?: number | string;
7227
+ }
7228
+ /**
7229
+ * MagickoClock1 icon component
7230
+ * @example
7231
+ * ```tsx
7232
+ * import { MagickoClock1 } from 'magick-icons';
7233
+ *
7234
+ * <MagickoClock1 size={24} className="text-blue-500" strokeWidth={2} />
7235
+ * ```
7236
+ */
7237
+ declare const MagickoClock1: React.ForwardRefExoticComponent<Omit<MagickoClock1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7238
+
7239
+ /**
7240
+ * Props for the MagickoClock2 icon component
7241
+ * @property {number | string} [size] - Size of the icon (default: 24)
7242
+ */
7243
+ interface MagickoClock2Props extends React.SVGProps<SVGSVGElement> {
7244
+ size?: number | string;
7245
+ }
7246
+ /**
7247
+ * MagickoClock2 icon component
7248
+ * @example
7249
+ * ```tsx
7250
+ * import { MagickoClock2 } from 'magick-icons';
7251
+ *
7252
+ * <MagickoClock2 size={24} className="text-blue-500" strokeWidth={2} />
7253
+ * ```
7254
+ */
7255
+ declare const MagickoClock2: React.ForwardRefExoticComponent<Omit<MagickoClock2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7256
+
7257
+ /**
7258
+ * Props for the MagickoCloseCircle icon component
7259
+ * @property {number | string} [size] - Size of the icon (default: 24)
7260
+ */
7261
+ interface MagickoCloseCircleProps extends React.SVGProps<SVGSVGElement> {
7262
+ size?: number | string;
7263
+ }
7264
+ /**
7265
+ * MagickoCloseCircle icon component
7266
+ * @example
7267
+ * ```tsx
7268
+ * import { MagickoCloseCircle } from 'magick-icons';
7269
+ *
7270
+ * <MagickoCloseCircle size={24} className="text-blue-500" strokeWidth={2} />
7271
+ * ```
7272
+ */
7273
+ declare const MagickoCloseCircle: React.ForwardRefExoticComponent<Omit<MagickoCloseCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7274
+
7275
+ /**
7276
+ * Props for the MagickoCloseSquare icon component
7277
+ * @property {number | string} [size] - Size of the icon (default: 24)
7278
+ */
7279
+ interface MagickoCloseSquareProps extends React.SVGProps<SVGSVGElement> {
7280
+ size?: number | string;
7281
+ }
7282
+ /**
7283
+ * MagickoCloseSquare icon component
7284
+ * @example
7285
+ * ```tsx
7286
+ * import { MagickoCloseSquare } from 'magick-icons';
7287
+ *
7288
+ * <MagickoCloseSquare size={24} className="text-blue-500" strokeWidth={2} />
7289
+ * ```
7290
+ */
7291
+ declare const MagickoCloseSquare: React.ForwardRefExoticComponent<Omit<MagickoCloseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7292
+
7293
+ /**
7294
+ * Props for the MagickoCloud1 icon component
7295
+ * @property {number | string} [size] - Size of the icon (default: 24)
7296
+ */
7297
+ interface MagickoCloud1Props extends React.SVGProps<SVGSVGElement> {
7298
+ size?: number | string;
7299
+ }
7300
+ /**
7301
+ * MagickoCloud1 icon component
7302
+ * @example
7303
+ * ```tsx
7304
+ * import { MagickoCloud1 } from 'magick-icons';
7305
+ *
7306
+ * <MagickoCloud1 size={24} className="text-blue-500" strokeWidth={2} />
7307
+ * ```
7308
+ */
7309
+ declare const MagickoCloud1: React.ForwardRefExoticComponent<Omit<MagickoCloud1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7310
+
7311
+ /**
7312
+ * Props for the MagickoCloudAdd icon component
7313
+ * @property {number | string} [size] - Size of the icon (default: 24)
7314
+ */
7315
+ interface MagickoCloudAddProps extends React.SVGProps<SVGSVGElement> {
7316
+ size?: number | string;
7317
+ }
7318
+ /**
7319
+ * MagickoCloudAdd icon component
7320
+ * @example
7321
+ * ```tsx
7322
+ * import { MagickoCloudAdd } from 'magick-icons';
7323
+ *
7324
+ * <MagickoCloudAdd size={24} className="text-blue-500" strokeWidth={2} />
7325
+ * ```
7326
+ */
7327
+ declare const MagickoCloudAdd: React.ForwardRefExoticComponent<Omit<MagickoCloudAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7328
+
7329
+ /**
7330
+ * Props for the MagickoCloudAdd1 icon component
7331
+ * @property {number | string} [size] - Size of the icon (default: 24)
7332
+ */
7333
+ interface MagickoCloudAdd1Props extends React.SVGProps<SVGSVGElement> {
7334
+ size?: number | string;
7335
+ }
7336
+ /**
7337
+ * MagickoCloudAdd1 icon component
7338
+ * @example
7339
+ * ```tsx
7340
+ * import { MagickoCloudAdd1 } from 'magick-icons';
7341
+ *
7342
+ * <MagickoCloudAdd1 size={24} className="text-blue-500" strokeWidth={2} />
7343
+ * ```
7344
+ */
7345
+ declare const MagickoCloudAdd1: React.ForwardRefExoticComponent<Omit<MagickoCloudAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7346
+
7347
+ /**
7348
+ * Props for the MagickoCloudChange icon component
7349
+ * @property {number | string} [size] - Size of the icon (default: 24)
7350
+ */
7351
+ interface MagickoCloudChangeProps extends React.SVGProps<SVGSVGElement> {
7352
+ size?: number | string;
7353
+ }
7354
+ /**
7355
+ * MagickoCloudChange icon component
7356
+ * @example
7357
+ * ```tsx
7358
+ * import { MagickoCloudChange } from 'magick-icons';
7359
+ *
7360
+ * <MagickoCloudChange size={24} className="text-blue-500" strokeWidth={2} />
7361
+ * ```
7362
+ */
7363
+ declare const MagickoCloudChange: React.ForwardRefExoticComponent<Omit<MagickoCloudChangeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7364
+
7365
+ /**
7366
+ * Props for the MagickoCloudConnection icon component
7367
+ * @property {number | string} [size] - Size of the icon (default: 24)
7368
+ */
7369
+ interface MagickoCloudConnectionProps extends React.SVGProps<SVGSVGElement> {
7370
+ size?: number | string;
7371
+ }
7372
+ /**
7373
+ * MagickoCloudConnection icon component
7374
+ * @example
7375
+ * ```tsx
7376
+ * import { MagickoCloudConnection } from 'magick-icons';
7377
+ *
7378
+ * <MagickoCloudConnection size={24} className="text-blue-500" strokeWidth={2} />
7379
+ * ```
7380
+ */
7381
+ declare const MagickoCloudConnection: React.ForwardRefExoticComponent<Omit<MagickoCloudConnectionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7382
+
7383
+ /**
7384
+ * Props for the MagickoCloudDrizzle icon component
7385
+ * @property {number | string} [size] - Size of the icon (default: 24)
7386
+ */
7387
+ interface MagickoCloudDrizzleProps extends React.SVGProps<SVGSVGElement> {
7388
+ size?: number | string;
7389
+ }
7390
+ /**
7391
+ * MagickoCloudDrizzle icon component
7392
+ * @example
7393
+ * ```tsx
7394
+ * import { MagickoCloudDrizzle } from 'magick-icons';
7395
+ *
7396
+ * <MagickoCloudDrizzle size={24} className="text-blue-500" strokeWidth={2} />
7397
+ * ```
7398
+ */
7399
+ declare const MagickoCloudDrizzle: React.ForwardRefExoticComponent<Omit<MagickoCloudDrizzleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7400
+
7401
+ /**
7402
+ * Props for the MagickoCloudFog icon component
7403
+ * @property {number | string} [size] - Size of the icon (default: 24)
7404
+ */
7405
+ interface MagickoCloudFogProps extends React.SVGProps<SVGSVGElement> {
7406
+ size?: number | string;
7407
+ }
7408
+ /**
7409
+ * MagickoCloudFog icon component
7410
+ * @example
7411
+ * ```tsx
7412
+ * import { MagickoCloudFog } from 'magick-icons';
7413
+ *
7414
+ * <MagickoCloudFog size={24} className="text-blue-500" strokeWidth={2} />
7415
+ * ```
7416
+ */
7417
+ declare const MagickoCloudFog: React.ForwardRefExoticComponent<Omit<MagickoCloudFogProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7418
+
7419
+ /**
7420
+ * Props for the MagickoCloudLightning icon component
7421
+ * @property {number | string} [size] - Size of the icon (default: 24)
7422
+ */
7423
+ interface MagickoCloudLightningProps extends React.SVGProps<SVGSVGElement> {
7424
+ size?: number | string;
7425
+ }
7426
+ /**
7427
+ * MagickoCloudLightning icon component
7428
+ * @example
7429
+ * ```tsx
7430
+ * import { MagickoCloudLightning } from 'magick-icons';
7431
+ *
7432
+ * <MagickoCloudLightning size={24} className="text-blue-500" strokeWidth={2} />
7433
+ * ```
7434
+ */
7435
+ declare const MagickoCloudLightning: React.ForwardRefExoticComponent<Omit<MagickoCloudLightningProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7436
+
7437
+ /**
7438
+ * Props for the MagickoCloudMinus icon component
7439
+ * @property {number | string} [size] - Size of the icon (default: 24)
7440
+ */
7441
+ interface MagickoCloudMinusProps extends React.SVGProps<SVGSVGElement> {
7442
+ size?: number | string;
7443
+ }
7444
+ /**
7445
+ * MagickoCloudMinus icon component
7446
+ * @example
7447
+ * ```tsx
7448
+ * import { MagickoCloudMinus } from 'magick-icons';
7449
+ *
7450
+ * <MagickoCloudMinus size={24} className="text-blue-500" strokeWidth={2} />
7451
+ * ```
7452
+ */
7453
+ declare const MagickoCloudMinus: React.ForwardRefExoticComponent<Omit<MagickoCloudMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7454
+
7455
+ /**
7456
+ * Props for the MagickoCloudNotif icon component
7457
+ * @property {number | string} [size] - Size of the icon (default: 24)
7458
+ */
7459
+ interface MagickoCloudNotifProps extends React.SVGProps<SVGSVGElement> {
7460
+ size?: number | string;
7461
+ }
7462
+ /**
7463
+ * MagickoCloudNotif icon component
7464
+ * @example
7465
+ * ```tsx
7466
+ * import { MagickoCloudNotif } from 'magick-icons';
7467
+ *
7468
+ * <MagickoCloudNotif size={24} className="text-blue-500" strokeWidth={2} />
7469
+ * ```
7470
+ */
7471
+ declare const MagickoCloudNotif: React.ForwardRefExoticComponent<Omit<MagickoCloudNotifProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6392
7472
 
6393
7473
  /**
6394
7474
  * Props for the Marketing icon component
@@ -6678,4 +7758,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
6678
7758
  */
6679
7759
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
6680
7760
 
6681
- 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, MagickoCheck, type MagickoCheckProps, 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 };
7761
+ 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, 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, 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 };