magick-icons 0.1.230 → 0.1.231
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 +541 -1
- package/index.d.ts +541 -1
- package/index.js +528 -67
- package/index.js.map +1 -1
- package/index.mjs +502 -71
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -8550,6 +8550,546 @@ interface MagickoDollarCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
|
8550
8550
|
*/
|
|
8551
8551
|
declare const MagickoDollarCircle: React.ForwardRefExoticComponent<Omit<MagickoDollarCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8552
8552
|
|
|
8553
|
+
/**
|
|
8554
|
+
* Props for the MagickoDollarSquare icon component
|
|
8555
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8556
|
+
*/
|
|
8557
|
+
interface MagickoDollarSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
8558
|
+
size?: number | string;
|
|
8559
|
+
}
|
|
8560
|
+
/**
|
|
8561
|
+
* MagickoDollarSquare icon component
|
|
8562
|
+
* @example
|
|
8563
|
+
* ```tsx
|
|
8564
|
+
* import { MagickoDollarSquare } from 'magick-icons';
|
|
8565
|
+
*
|
|
8566
|
+
* <MagickoDollarSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
8567
|
+
* ```
|
|
8568
|
+
*/
|
|
8569
|
+
declare const MagickoDollarSquare: React.ForwardRefExoticComponent<Omit<MagickoDollarSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8570
|
+
|
|
8571
|
+
/**
|
|
8572
|
+
* Props for the MagickoDownloadArrow icon component
|
|
8573
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8574
|
+
*/
|
|
8575
|
+
interface MagickoDownloadArrowProps extends React.SVGProps<SVGSVGElement> {
|
|
8576
|
+
size?: number | string;
|
|
8577
|
+
}
|
|
8578
|
+
/**
|
|
8579
|
+
* MagickoDownloadArrow icon component
|
|
8580
|
+
* @example
|
|
8581
|
+
* ```tsx
|
|
8582
|
+
* import { MagickoDownloadArrow } from 'magick-icons';
|
|
8583
|
+
*
|
|
8584
|
+
* <MagickoDownloadArrow size={24} className="text-blue-500" strokeWidth={2} />
|
|
8585
|
+
* ```
|
|
8586
|
+
*/
|
|
8587
|
+
declare const MagickoDownloadArrow: React.ForwardRefExoticComponent<Omit<MagickoDownloadArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8588
|
+
|
|
8589
|
+
/**
|
|
8590
|
+
* Props for the MagickoDownloadHorizontalArrow icon component
|
|
8591
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8592
|
+
*/
|
|
8593
|
+
interface MagickoDownloadHorizontalArrowProps extends React.SVGProps<SVGSVGElement> {
|
|
8594
|
+
size?: number | string;
|
|
8595
|
+
}
|
|
8596
|
+
/**
|
|
8597
|
+
* MagickoDownloadHorizontalArrow icon component
|
|
8598
|
+
* @example
|
|
8599
|
+
* ```tsx
|
|
8600
|
+
* import { MagickoDownloadHorizontalArrow } from 'magick-icons';
|
|
8601
|
+
*
|
|
8602
|
+
* <MagickoDownloadHorizontalArrow size={24} className="text-blue-500" strokeWidth={2} />
|
|
8603
|
+
* ```
|
|
8604
|
+
*/
|
|
8605
|
+
declare const MagickoDownloadHorizontalArrow: React.ForwardRefExoticComponent<Omit<MagickoDownloadHorizontalArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8606
|
+
|
|
8607
|
+
/**
|
|
8608
|
+
* Props for the MagickoDriver icon component
|
|
8609
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8610
|
+
*/
|
|
8611
|
+
interface MagickoDriverProps extends React.SVGProps<SVGSVGElement> {
|
|
8612
|
+
size?: number | string;
|
|
8613
|
+
}
|
|
8614
|
+
/**
|
|
8615
|
+
* MagickoDriver icon component
|
|
8616
|
+
* @example
|
|
8617
|
+
* ```tsx
|
|
8618
|
+
* import { MagickoDriver } from 'magick-icons';
|
|
8619
|
+
*
|
|
8620
|
+
* <MagickoDriver size={24} className="text-blue-500" strokeWidth={2} />
|
|
8621
|
+
* ```
|
|
8622
|
+
*/
|
|
8623
|
+
declare const MagickoDriver: React.ForwardRefExoticComponent<Omit<MagickoDriverProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8624
|
+
|
|
8625
|
+
/**
|
|
8626
|
+
* Props for the MagickoDriver2 icon component
|
|
8627
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8628
|
+
*/
|
|
8629
|
+
interface MagickoDriver2Props extends React.SVGProps<SVGSVGElement> {
|
|
8630
|
+
size?: number | string;
|
|
8631
|
+
}
|
|
8632
|
+
/**
|
|
8633
|
+
* MagickoDriver2 icon component
|
|
8634
|
+
* @example
|
|
8635
|
+
* ```tsx
|
|
8636
|
+
* import { MagickoDriver2 } from 'magick-icons';
|
|
8637
|
+
*
|
|
8638
|
+
* <MagickoDriver2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8639
|
+
* ```
|
|
8640
|
+
*/
|
|
8641
|
+
declare const MagickoDriver2: React.ForwardRefExoticComponent<Omit<MagickoDriver2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8642
|
+
|
|
8643
|
+
/**
|
|
8644
|
+
* Props for the MagickoDriverRefresh icon component
|
|
8645
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8646
|
+
*/
|
|
8647
|
+
interface MagickoDriverRefreshProps extends React.SVGProps<SVGSVGElement> {
|
|
8648
|
+
size?: number | string;
|
|
8649
|
+
}
|
|
8650
|
+
/**
|
|
8651
|
+
* MagickoDriverRefresh icon component
|
|
8652
|
+
* @example
|
|
8653
|
+
* ```tsx
|
|
8654
|
+
* import { MagickoDriverRefresh } from 'magick-icons';
|
|
8655
|
+
*
|
|
8656
|
+
* <MagickoDriverRefresh size={24} className="text-blue-500" strokeWidth={2} />
|
|
8657
|
+
* ```
|
|
8658
|
+
*/
|
|
8659
|
+
declare const MagickoDriverRefresh: React.ForwardRefExoticComponent<Omit<MagickoDriverRefreshProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8660
|
+
|
|
8661
|
+
/**
|
|
8662
|
+
* Props for the MagickoDriving icon component
|
|
8663
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8664
|
+
*/
|
|
8665
|
+
interface MagickoDrivingProps extends React.SVGProps<SVGSVGElement> {
|
|
8666
|
+
size?: number | string;
|
|
8667
|
+
}
|
|
8668
|
+
/**
|
|
8669
|
+
* MagickoDriving icon component
|
|
8670
|
+
* @example
|
|
8671
|
+
* ```tsx
|
|
8672
|
+
* import { MagickoDriving } from 'magick-icons';
|
|
8673
|
+
*
|
|
8674
|
+
* <MagickoDriving size={24} className="text-blue-500" strokeWidth={2} />
|
|
8675
|
+
* ```
|
|
8676
|
+
*/
|
|
8677
|
+
declare const MagickoDriving: React.ForwardRefExoticComponent<Omit<MagickoDrivingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8678
|
+
|
|
8679
|
+
/**
|
|
8680
|
+
* Props for the MagickoDrop icon component
|
|
8681
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8682
|
+
*/
|
|
8683
|
+
interface MagickoDropProps extends React.SVGProps<SVGSVGElement> {
|
|
8684
|
+
size?: number | string;
|
|
8685
|
+
}
|
|
8686
|
+
/**
|
|
8687
|
+
* MagickoDrop icon component
|
|
8688
|
+
* @example
|
|
8689
|
+
* ```tsx
|
|
8690
|
+
* import { MagickoDrop } from 'magick-icons';
|
|
8691
|
+
*
|
|
8692
|
+
* <MagickoDrop size={24} className="text-blue-500" strokeWidth={2} />
|
|
8693
|
+
* ```
|
|
8694
|
+
*/
|
|
8695
|
+
declare const MagickoDrop: React.ForwardRefExoticComponent<Omit<MagickoDropProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8696
|
+
|
|
8697
|
+
/**
|
|
8698
|
+
* Props for the MagickoDrops icon component
|
|
8699
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8700
|
+
*/
|
|
8701
|
+
interface MagickoDropsProps extends React.SVGProps<SVGSVGElement> {
|
|
8702
|
+
size?: number | string;
|
|
8703
|
+
}
|
|
8704
|
+
/**
|
|
8705
|
+
* MagickoDrops icon component
|
|
8706
|
+
* @example
|
|
8707
|
+
* ```tsx
|
|
8708
|
+
* import { MagickoDrops } from 'magick-icons';
|
|
8709
|
+
*
|
|
8710
|
+
* <MagickoDrops size={24} className="text-blue-500" strokeWidth={2} />
|
|
8711
|
+
* ```
|
|
8712
|
+
*/
|
|
8713
|
+
declare const MagickoDrops: React.ForwardRefExoticComponent<Omit<MagickoDropsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8714
|
+
|
|
8715
|
+
/**
|
|
8716
|
+
* Props for the MagickoDuplicate icon component
|
|
8717
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8718
|
+
*/
|
|
8719
|
+
interface MagickoDuplicateProps extends React.SVGProps<SVGSVGElement> {
|
|
8720
|
+
size?: number | string;
|
|
8721
|
+
}
|
|
8722
|
+
/**
|
|
8723
|
+
* MagickoDuplicate icon component
|
|
8724
|
+
* @example
|
|
8725
|
+
* ```tsx
|
|
8726
|
+
* import { MagickoDuplicate } from 'magick-icons';
|
|
8727
|
+
*
|
|
8728
|
+
* <MagickoDuplicate size={24} className="text-blue-500" strokeWidth={2} />
|
|
8729
|
+
* ```
|
|
8730
|
+
*/
|
|
8731
|
+
declare const MagickoDuplicate: React.ForwardRefExoticComponent<Omit<MagickoDuplicateProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8732
|
+
|
|
8733
|
+
/**
|
|
8734
|
+
* Props for the MagickoDuplicate1 icon component
|
|
8735
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8736
|
+
*/
|
|
8737
|
+
interface MagickoDuplicate1Props extends React.SVGProps<SVGSVGElement> {
|
|
8738
|
+
size?: number | string;
|
|
8739
|
+
}
|
|
8740
|
+
/**
|
|
8741
|
+
* MagickoDuplicate1 icon component
|
|
8742
|
+
* @example
|
|
8743
|
+
* ```tsx
|
|
8744
|
+
* import { MagickoDuplicate1 } from 'magick-icons';
|
|
8745
|
+
*
|
|
8746
|
+
* <MagickoDuplicate1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8747
|
+
* ```
|
|
8748
|
+
*/
|
|
8749
|
+
declare const MagickoDuplicate1: React.ForwardRefExoticComponent<Omit<MagickoDuplicate1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8750
|
+
|
|
8751
|
+
/**
|
|
8752
|
+
* Props for the MagickoDuplicate2 icon component
|
|
8753
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8754
|
+
*/
|
|
8755
|
+
interface MagickoDuplicate2Props extends React.SVGProps<SVGSVGElement> {
|
|
8756
|
+
size?: number | string;
|
|
8757
|
+
}
|
|
8758
|
+
/**
|
|
8759
|
+
* MagickoDuplicate2 icon component
|
|
8760
|
+
* @example
|
|
8761
|
+
* ```tsx
|
|
8762
|
+
* import { MagickoDuplicate2 } from 'magick-icons';
|
|
8763
|
+
*
|
|
8764
|
+
* <MagickoDuplicate2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8765
|
+
* ```
|
|
8766
|
+
*/
|
|
8767
|
+
declare const MagickoDuplicate2: React.ForwardRefExoticComponent<Omit<MagickoDuplicate2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8768
|
+
|
|
8769
|
+
/**
|
|
8770
|
+
* Props for the MagickoEdit icon component
|
|
8771
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8772
|
+
*/
|
|
8773
|
+
interface MagickoEditProps extends React.SVGProps<SVGSVGElement> {
|
|
8774
|
+
size?: number | string;
|
|
8775
|
+
}
|
|
8776
|
+
/**
|
|
8777
|
+
* MagickoEdit icon component
|
|
8778
|
+
* @example
|
|
8779
|
+
* ```tsx
|
|
8780
|
+
* import { MagickoEdit } from 'magick-icons';
|
|
8781
|
+
*
|
|
8782
|
+
* <MagickoEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
8783
|
+
* ```
|
|
8784
|
+
*/
|
|
8785
|
+
declare const MagickoEdit: React.ForwardRefExoticComponent<Omit<MagickoEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8786
|
+
|
|
8787
|
+
/**
|
|
8788
|
+
* Props for the MagickoEdit1 icon component
|
|
8789
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8790
|
+
*/
|
|
8791
|
+
interface MagickoEdit1Props extends React.SVGProps<SVGSVGElement> {
|
|
8792
|
+
size?: number | string;
|
|
8793
|
+
}
|
|
8794
|
+
/**
|
|
8795
|
+
* MagickoEdit1 icon component
|
|
8796
|
+
* @example
|
|
8797
|
+
* ```tsx
|
|
8798
|
+
* import { MagickoEdit1 } from 'magick-icons';
|
|
8799
|
+
*
|
|
8800
|
+
* <MagickoEdit1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8801
|
+
* ```
|
|
8802
|
+
*/
|
|
8803
|
+
declare const MagickoEdit1: React.ForwardRefExoticComponent<Omit<MagickoEdit1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8804
|
+
|
|
8805
|
+
/**
|
|
8806
|
+
* Props for the MagickoEdit2 icon component
|
|
8807
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8808
|
+
*/
|
|
8809
|
+
interface MagickoEdit2Props extends React.SVGProps<SVGSVGElement> {
|
|
8810
|
+
size?: number | string;
|
|
8811
|
+
}
|
|
8812
|
+
/**
|
|
8813
|
+
* MagickoEdit2 icon component
|
|
8814
|
+
* @example
|
|
8815
|
+
* ```tsx
|
|
8816
|
+
* import { MagickoEdit2 } from 'magick-icons';
|
|
8817
|
+
*
|
|
8818
|
+
* <MagickoEdit2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8819
|
+
* ```
|
|
8820
|
+
*/
|
|
8821
|
+
declare const MagickoEdit2: React.ForwardRefExoticComponent<Omit<MagickoEdit2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8822
|
+
|
|
8823
|
+
/**
|
|
8824
|
+
* Props for the MagickoEdit21 icon component
|
|
8825
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8826
|
+
*/
|
|
8827
|
+
interface MagickoEdit21Props extends React.SVGProps<SVGSVGElement> {
|
|
8828
|
+
size?: number | string;
|
|
8829
|
+
}
|
|
8830
|
+
/**
|
|
8831
|
+
* MagickoEdit21 icon component
|
|
8832
|
+
* @example
|
|
8833
|
+
* ```tsx
|
|
8834
|
+
* import { MagickoEdit21 } from 'magick-icons';
|
|
8835
|
+
*
|
|
8836
|
+
* <MagickoEdit21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8837
|
+
* ```
|
|
8838
|
+
*/
|
|
8839
|
+
declare const MagickoEdit21: React.ForwardRefExoticComponent<Omit<MagickoEdit21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8840
|
+
|
|
8841
|
+
/**
|
|
8842
|
+
* Props for the MagickoEdit3 icon component
|
|
8843
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8844
|
+
*/
|
|
8845
|
+
interface MagickoEdit3Props extends React.SVGProps<SVGSVGElement> {
|
|
8846
|
+
size?: number | string;
|
|
8847
|
+
}
|
|
8848
|
+
/**
|
|
8849
|
+
* MagickoEdit3 icon component
|
|
8850
|
+
* @example
|
|
8851
|
+
* ```tsx
|
|
8852
|
+
* import { MagickoEdit3 } from 'magick-icons';
|
|
8853
|
+
*
|
|
8854
|
+
* <MagickoEdit3 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8855
|
+
* ```
|
|
8856
|
+
*/
|
|
8857
|
+
declare const MagickoEdit3: React.ForwardRefExoticComponent<Omit<MagickoEdit3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8858
|
+
|
|
8859
|
+
/**
|
|
8860
|
+
* Props for the MagickoEdit4 icon component
|
|
8861
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8862
|
+
*/
|
|
8863
|
+
interface MagickoEdit4Props extends React.SVGProps<SVGSVGElement> {
|
|
8864
|
+
size?: number | string;
|
|
8865
|
+
}
|
|
8866
|
+
/**
|
|
8867
|
+
* MagickoEdit4 icon component
|
|
8868
|
+
* @example
|
|
8869
|
+
* ```tsx
|
|
8870
|
+
* import { MagickoEdit4 } from 'magick-icons';
|
|
8871
|
+
*
|
|
8872
|
+
* <MagickoEdit4 size={24} className="text-blue-500" strokeWidth={2} />
|
|
8873
|
+
* ```
|
|
8874
|
+
*/
|
|
8875
|
+
declare const MagickoEdit4: React.ForwardRefExoticComponent<Omit<MagickoEdit4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8876
|
+
|
|
8877
|
+
/**
|
|
8878
|
+
* Props for the MagickoEditCloud icon component
|
|
8879
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8880
|
+
*/
|
|
8881
|
+
interface MagickoEditCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
8882
|
+
size?: number | string;
|
|
8883
|
+
}
|
|
8884
|
+
/**
|
|
8885
|
+
* MagickoEditCloud icon component
|
|
8886
|
+
* @example
|
|
8887
|
+
* ```tsx
|
|
8888
|
+
* import { MagickoEditCloud } from 'magick-icons';
|
|
8889
|
+
*
|
|
8890
|
+
* <MagickoEditCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
8891
|
+
* ```
|
|
8892
|
+
*/
|
|
8893
|
+
declare const MagickoEditCloud: React.ForwardRefExoticComponent<Omit<MagickoEditCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8894
|
+
|
|
8895
|
+
/**
|
|
8896
|
+
* Props for the MagickoElectricity icon component
|
|
8897
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8898
|
+
*/
|
|
8899
|
+
interface MagickoElectricityProps extends React.SVGProps<SVGSVGElement> {
|
|
8900
|
+
size?: number | string;
|
|
8901
|
+
}
|
|
8902
|
+
/**
|
|
8903
|
+
* MagickoElectricity icon component
|
|
8904
|
+
* @example
|
|
8905
|
+
* ```tsx
|
|
8906
|
+
* import { MagickoElectricity } from 'magick-icons';
|
|
8907
|
+
*
|
|
8908
|
+
* <MagickoElectricity size={24} className="text-blue-500" strokeWidth={2} />
|
|
8909
|
+
* ```
|
|
8910
|
+
*/
|
|
8911
|
+
declare const MagickoElectricity: React.ForwardRefExoticComponent<Omit<MagickoElectricityProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8912
|
+
|
|
8913
|
+
/**
|
|
8914
|
+
* Props for the MagickoEmojiHappy icon component
|
|
8915
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8916
|
+
*/
|
|
8917
|
+
interface MagickoEmojiHappyProps extends React.SVGProps<SVGSVGElement> {
|
|
8918
|
+
size?: number | string;
|
|
8919
|
+
}
|
|
8920
|
+
/**
|
|
8921
|
+
* MagickoEmojiHappy icon component
|
|
8922
|
+
* @example
|
|
8923
|
+
* ```tsx
|
|
8924
|
+
* import { MagickoEmojiHappy } from 'magick-icons';
|
|
8925
|
+
*
|
|
8926
|
+
* <MagickoEmojiHappy size={24} className="text-blue-500" strokeWidth={2} />
|
|
8927
|
+
* ```
|
|
8928
|
+
*/
|
|
8929
|
+
declare const MagickoEmojiHappy: React.ForwardRefExoticComponent<Omit<MagickoEmojiHappyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8930
|
+
|
|
8931
|
+
/**
|
|
8932
|
+
* Props for the MagickoEmojiNormal icon component
|
|
8933
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8934
|
+
*/
|
|
8935
|
+
interface MagickoEmojiNormalProps extends React.SVGProps<SVGSVGElement> {
|
|
8936
|
+
size?: number | string;
|
|
8937
|
+
}
|
|
8938
|
+
/**
|
|
8939
|
+
* MagickoEmojiNormal icon component
|
|
8940
|
+
* @example
|
|
8941
|
+
* ```tsx
|
|
8942
|
+
* import { MagickoEmojiNormal } from 'magick-icons';
|
|
8943
|
+
*
|
|
8944
|
+
* <MagickoEmojiNormal size={24} className="text-blue-500" strokeWidth={2} />
|
|
8945
|
+
* ```
|
|
8946
|
+
*/
|
|
8947
|
+
declare const MagickoEmojiNormal: React.ForwardRefExoticComponent<Omit<MagickoEmojiNormalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8948
|
+
|
|
8949
|
+
/**
|
|
8950
|
+
* Props for the MagickoEmojiSad icon component
|
|
8951
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8952
|
+
*/
|
|
8953
|
+
interface MagickoEmojiSadProps extends React.SVGProps<SVGSVGElement> {
|
|
8954
|
+
size?: number | string;
|
|
8955
|
+
}
|
|
8956
|
+
/**
|
|
8957
|
+
* MagickoEmojiSad icon component
|
|
8958
|
+
* @example
|
|
8959
|
+
* ```tsx
|
|
8960
|
+
* import { MagickoEmojiSad } from 'magick-icons';
|
|
8961
|
+
*
|
|
8962
|
+
* <MagickoEmojiSad size={24} className="text-blue-500" strokeWidth={2} />
|
|
8963
|
+
* ```
|
|
8964
|
+
*/
|
|
8965
|
+
declare const MagickoEmojiSad: React.ForwardRefExoticComponent<Omit<MagickoEmojiSadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8966
|
+
|
|
8967
|
+
/**
|
|
8968
|
+
* Props for the MagickoEmptyWallet icon component
|
|
8969
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8970
|
+
*/
|
|
8971
|
+
interface MagickoEmptyWalletProps extends React.SVGProps<SVGSVGElement> {
|
|
8972
|
+
size?: number | string;
|
|
8973
|
+
}
|
|
8974
|
+
/**
|
|
8975
|
+
* MagickoEmptyWallet icon component
|
|
8976
|
+
* @example
|
|
8977
|
+
* ```tsx
|
|
8978
|
+
* import { MagickoEmptyWallet } from 'magick-icons';
|
|
8979
|
+
*
|
|
8980
|
+
* <MagickoEmptyWallet size={24} className="text-blue-500" strokeWidth={2} />
|
|
8981
|
+
* ```
|
|
8982
|
+
*/
|
|
8983
|
+
declare const MagickoEmptyWallet: React.ForwardRefExoticComponent<Omit<MagickoEmptyWalletProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8984
|
+
|
|
8985
|
+
/**
|
|
8986
|
+
* Props for the MagickoEnhancePrize icon component
|
|
8987
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
8988
|
+
*/
|
|
8989
|
+
interface MagickoEnhancePrizeProps extends React.SVGProps<SVGSVGElement> {
|
|
8990
|
+
size?: number | string;
|
|
8991
|
+
}
|
|
8992
|
+
/**
|
|
8993
|
+
* MagickoEnhancePrize icon component
|
|
8994
|
+
* @example
|
|
8995
|
+
* ```tsx
|
|
8996
|
+
* import { MagickoEnhancePrize } from 'magick-icons';
|
|
8997
|
+
*
|
|
8998
|
+
* <MagickoEnhancePrize size={24} className="text-blue-500" strokeWidth={2} />
|
|
8999
|
+
* ```
|
|
9000
|
+
*/
|
|
9001
|
+
declare const MagickoEnhancePrize: React.ForwardRefExoticComponent<Omit<MagickoEnhancePrizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9002
|
+
|
|
9003
|
+
/**
|
|
9004
|
+
* Props for the MagickoEnhanceUserAi icon component
|
|
9005
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9006
|
+
*/
|
|
9007
|
+
interface MagickoEnhanceUserAiProps extends React.SVGProps<SVGSVGElement> {
|
|
9008
|
+
size?: number | string;
|
|
9009
|
+
}
|
|
9010
|
+
/**
|
|
9011
|
+
* MagickoEnhanceUserAi icon component
|
|
9012
|
+
* @example
|
|
9013
|
+
* ```tsx
|
|
9014
|
+
* import { MagickoEnhanceUserAi } from 'magick-icons';
|
|
9015
|
+
*
|
|
9016
|
+
* <MagickoEnhanceUserAi size={24} className="text-blue-500" strokeWidth={2} />
|
|
9017
|
+
* ```
|
|
9018
|
+
*/
|
|
9019
|
+
declare const MagickoEnhanceUserAi: React.ForwardRefExoticComponent<Omit<MagickoEnhanceUserAiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9020
|
+
|
|
9021
|
+
/**
|
|
9022
|
+
* Props for the MagickoEnterArrow01 icon component
|
|
9023
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9024
|
+
*/
|
|
9025
|
+
interface MagickoEnterArrow01Props extends React.SVGProps<SVGSVGElement> {
|
|
9026
|
+
size?: number | string;
|
|
9027
|
+
}
|
|
9028
|
+
/**
|
|
9029
|
+
* MagickoEnterArrow01 icon component
|
|
9030
|
+
* @example
|
|
9031
|
+
* ```tsx
|
|
9032
|
+
* import { MagickoEnterArrow01 } from 'magick-icons';
|
|
9033
|
+
*
|
|
9034
|
+
* <MagickoEnterArrow01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9035
|
+
* ```
|
|
9036
|
+
*/
|
|
9037
|
+
declare const MagickoEnterArrow01: React.ForwardRefExoticComponent<Omit<MagickoEnterArrow01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9038
|
+
|
|
9039
|
+
/**
|
|
9040
|
+
* Props for the MagickoEnterArrow02 icon component
|
|
9041
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9042
|
+
*/
|
|
9043
|
+
interface MagickoEnterArrow02Props extends React.SVGProps<SVGSVGElement> {
|
|
9044
|
+
size?: number | string;
|
|
9045
|
+
}
|
|
9046
|
+
/**
|
|
9047
|
+
* MagickoEnterArrow02 icon component
|
|
9048
|
+
* @example
|
|
9049
|
+
* ```tsx
|
|
9050
|
+
* import { MagickoEnterArrow02 } from 'magick-icons';
|
|
9051
|
+
*
|
|
9052
|
+
* <MagickoEnterArrow02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9053
|
+
* ```
|
|
9054
|
+
*/
|
|
9055
|
+
declare const MagickoEnterArrow02: React.ForwardRefExoticComponent<Omit<MagickoEnterArrow02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9056
|
+
|
|
9057
|
+
/**
|
|
9058
|
+
* Props for the MagickoEnterArrow03 icon component
|
|
9059
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9060
|
+
*/
|
|
9061
|
+
interface MagickoEnterArrow03Props extends React.SVGProps<SVGSVGElement> {
|
|
9062
|
+
size?: number | string;
|
|
9063
|
+
}
|
|
9064
|
+
/**
|
|
9065
|
+
* MagickoEnterArrow03 icon component
|
|
9066
|
+
* @example
|
|
9067
|
+
* ```tsx
|
|
9068
|
+
* import { MagickoEnterArrow03 } from 'magick-icons';
|
|
9069
|
+
*
|
|
9070
|
+
* <MagickoEnterArrow03 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9071
|
+
* ```
|
|
9072
|
+
*/
|
|
9073
|
+
declare const MagickoEnterArrow03: React.ForwardRefExoticComponent<Omit<MagickoEnterArrow03Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9074
|
+
|
|
9075
|
+
/**
|
|
9076
|
+
* Props for the MagickoExitArrow01 icon component
|
|
9077
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
9078
|
+
*/
|
|
9079
|
+
interface MagickoExitArrow01Props extends React.SVGProps<SVGSVGElement> {
|
|
9080
|
+
size?: number | string;
|
|
9081
|
+
}
|
|
9082
|
+
/**
|
|
9083
|
+
* MagickoExitArrow01 icon component
|
|
9084
|
+
* @example
|
|
9085
|
+
* ```tsx
|
|
9086
|
+
* import { MagickoExitArrow01 } from 'magick-icons';
|
|
9087
|
+
*
|
|
9088
|
+
* <MagickoExitArrow01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
9089
|
+
* ```
|
|
9090
|
+
*/
|
|
9091
|
+
declare const MagickoExitArrow01: React.ForwardRefExoticComponent<Omit<MagickoExitArrow01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9092
|
+
|
|
8553
9093
|
/**
|
|
8554
9094
|
* Props for the Marketing icon component
|
|
8555
9095
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -8838,4 +9378,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
8838
9378
|
*/
|
|
8839
9379
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
8840
9380
|
|
|
8841
|
-
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, 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 };
|
|
9381
|
+
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, 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 };
|