magick-icons 0.1.219 → 0.1.220
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 +537 -71
- package/index.js.map +1 -1
- package/index.mjs +511 -75
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -3672,6 +3672,546 @@ interface MagickoAiDocument2Props extends React.SVGProps<SVGSVGElement> {
|
|
|
3672
3672
|
*/
|
|
3673
3673
|
declare const MagickoAiDocument2: React.ForwardRefExoticComponent<Omit<MagickoAiDocument2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3674
3674
|
|
|
3675
|
+
/**
|
|
3676
|
+
* Props for the MagickoAiDrink icon component
|
|
3677
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3678
|
+
*/
|
|
3679
|
+
interface MagickoAiDrinkProps extends React.SVGProps<SVGSVGElement> {
|
|
3680
|
+
size?: number | string;
|
|
3681
|
+
}
|
|
3682
|
+
/**
|
|
3683
|
+
* MagickoAiDrink icon component
|
|
3684
|
+
* @example
|
|
3685
|
+
* ```tsx
|
|
3686
|
+
* import { MagickoAiDrink } from 'magick-icons';
|
|
3687
|
+
*
|
|
3688
|
+
* <MagickoAiDrink size={24} className="text-blue-500" strokeWidth={2} />
|
|
3689
|
+
* ```
|
|
3690
|
+
*/
|
|
3691
|
+
declare const MagickoAiDrink: React.ForwardRefExoticComponent<Omit<MagickoAiDrinkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3692
|
+
|
|
3693
|
+
/**
|
|
3694
|
+
* Props for the MagickoAiEnergy icon component
|
|
3695
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3696
|
+
*/
|
|
3697
|
+
interface MagickoAiEnergyProps extends React.SVGProps<SVGSVGElement> {
|
|
3698
|
+
size?: number | string;
|
|
3699
|
+
}
|
|
3700
|
+
/**
|
|
3701
|
+
* MagickoAiEnergy icon component
|
|
3702
|
+
* @example
|
|
3703
|
+
* ```tsx
|
|
3704
|
+
* import { MagickoAiEnergy } from 'magick-icons';
|
|
3705
|
+
*
|
|
3706
|
+
* <MagickoAiEnergy size={24} className="text-blue-500" strokeWidth={2} />
|
|
3707
|
+
* ```
|
|
3708
|
+
*/
|
|
3709
|
+
declare const MagickoAiEnergy: React.ForwardRefExoticComponent<Omit<MagickoAiEnergyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3710
|
+
|
|
3711
|
+
/**
|
|
3712
|
+
* Props for the MagickoAiEngine icon component
|
|
3713
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3714
|
+
*/
|
|
3715
|
+
interface MagickoAiEngineProps extends React.SVGProps<SVGSVGElement> {
|
|
3716
|
+
size?: number | string;
|
|
3717
|
+
}
|
|
3718
|
+
/**
|
|
3719
|
+
* MagickoAiEngine icon component
|
|
3720
|
+
* @example
|
|
3721
|
+
* ```tsx
|
|
3722
|
+
* import { MagickoAiEngine } from 'magick-icons';
|
|
3723
|
+
*
|
|
3724
|
+
* <MagickoAiEngine size={24} className="text-blue-500" strokeWidth={2} />
|
|
3725
|
+
* ```
|
|
3726
|
+
*/
|
|
3727
|
+
declare const MagickoAiEngine: React.ForwardRefExoticComponent<Omit<MagickoAiEngineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3728
|
+
|
|
3729
|
+
/**
|
|
3730
|
+
* Props for the MagickoAiEnhance icon component
|
|
3731
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3732
|
+
*/
|
|
3733
|
+
interface MagickoAiEnhanceProps extends React.SVGProps<SVGSVGElement> {
|
|
3734
|
+
size?: number | string;
|
|
3735
|
+
}
|
|
3736
|
+
/**
|
|
3737
|
+
* MagickoAiEnhance icon component
|
|
3738
|
+
* @example
|
|
3739
|
+
* ```tsx
|
|
3740
|
+
* import { MagickoAiEnhance } from 'magick-icons';
|
|
3741
|
+
*
|
|
3742
|
+
* <MagickoAiEnhance size={24} className="text-blue-500" strokeWidth={2} />
|
|
3743
|
+
* ```
|
|
3744
|
+
*/
|
|
3745
|
+
declare const MagickoAiEnhance: React.ForwardRefExoticComponent<Omit<MagickoAiEnhanceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3746
|
+
|
|
3747
|
+
/**
|
|
3748
|
+
* Props for the MagickoAiExport icon component
|
|
3749
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3750
|
+
*/
|
|
3751
|
+
interface MagickoAiExportProps extends React.SVGProps<SVGSVGElement> {
|
|
3752
|
+
size?: number | string;
|
|
3753
|
+
}
|
|
3754
|
+
/**
|
|
3755
|
+
* MagickoAiExport icon component
|
|
3756
|
+
* @example
|
|
3757
|
+
* ```tsx
|
|
3758
|
+
* import { MagickoAiExport } from 'magick-icons';
|
|
3759
|
+
*
|
|
3760
|
+
* <MagickoAiExport size={24} className="text-blue-500" strokeWidth={2} />
|
|
3761
|
+
* ```
|
|
3762
|
+
*/
|
|
3763
|
+
declare const MagickoAiExport: React.ForwardRefExoticComponent<Omit<MagickoAiExportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3764
|
+
|
|
3765
|
+
/**
|
|
3766
|
+
* Props for the MagickoAiFile icon component
|
|
3767
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3768
|
+
*/
|
|
3769
|
+
interface MagickoAiFileProps extends React.SVGProps<SVGSVGElement> {
|
|
3770
|
+
size?: number | string;
|
|
3771
|
+
}
|
|
3772
|
+
/**
|
|
3773
|
+
* MagickoAiFile icon component
|
|
3774
|
+
* @example
|
|
3775
|
+
* ```tsx
|
|
3776
|
+
* import { MagickoAiFile } from 'magick-icons';
|
|
3777
|
+
*
|
|
3778
|
+
* <MagickoAiFile size={24} className="text-blue-500" strokeWidth={2} />
|
|
3779
|
+
* ```
|
|
3780
|
+
*/
|
|
3781
|
+
declare const MagickoAiFile: React.ForwardRefExoticComponent<Omit<MagickoAiFileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3782
|
+
|
|
3783
|
+
/**
|
|
3784
|
+
* Props for the MagickoAiFileAi icon component
|
|
3785
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3786
|
+
*/
|
|
3787
|
+
interface MagickoAiFileAiProps extends React.SVGProps<SVGSVGElement> {
|
|
3788
|
+
size?: number | string;
|
|
3789
|
+
}
|
|
3790
|
+
/**
|
|
3791
|
+
* MagickoAiFileAi icon component
|
|
3792
|
+
* @example
|
|
3793
|
+
* ```tsx
|
|
3794
|
+
* import { MagickoAiFileAi } from 'magick-icons';
|
|
3795
|
+
*
|
|
3796
|
+
* <MagickoAiFileAi size={24} className="text-blue-500" strokeWidth={2} />
|
|
3797
|
+
* ```
|
|
3798
|
+
*/
|
|
3799
|
+
declare const MagickoAiFileAi: React.ForwardRefExoticComponent<Omit<MagickoAiFileAiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3800
|
+
|
|
3801
|
+
/**
|
|
3802
|
+
* Props for the MagickoAiFuelTank icon component
|
|
3803
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3804
|
+
*/
|
|
3805
|
+
interface MagickoAiFuelTankProps extends React.SVGProps<SVGSVGElement> {
|
|
3806
|
+
size?: number | string;
|
|
3807
|
+
}
|
|
3808
|
+
/**
|
|
3809
|
+
* MagickoAiFuelTank icon component
|
|
3810
|
+
* @example
|
|
3811
|
+
* ```tsx
|
|
3812
|
+
* import { MagickoAiFuelTank } from 'magick-icons';
|
|
3813
|
+
*
|
|
3814
|
+
* <MagickoAiFuelTank size={24} className="text-blue-500" strokeWidth={2} />
|
|
3815
|
+
* ```
|
|
3816
|
+
*/
|
|
3817
|
+
declare const MagickoAiFuelTank: React.ForwardRefExoticComponent<Omit<MagickoAiFuelTankProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3818
|
+
|
|
3819
|
+
/**
|
|
3820
|
+
* Props for the MagickoAiHeartSquare icon component
|
|
3821
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3822
|
+
*/
|
|
3823
|
+
interface MagickoAiHeartSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
3824
|
+
size?: number | string;
|
|
3825
|
+
}
|
|
3826
|
+
/**
|
|
3827
|
+
* MagickoAiHeartSquare icon component
|
|
3828
|
+
* @example
|
|
3829
|
+
* ```tsx
|
|
3830
|
+
* import { MagickoAiHeartSquare } from 'magick-icons';
|
|
3831
|
+
*
|
|
3832
|
+
* <MagickoAiHeartSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
3833
|
+
* ```
|
|
3834
|
+
*/
|
|
3835
|
+
declare const MagickoAiHeartSquare: React.ForwardRefExoticComponent<Omit<MagickoAiHeartSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3836
|
+
|
|
3837
|
+
/**
|
|
3838
|
+
* Props for the MagickoAiHomepage icon component
|
|
3839
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3840
|
+
*/
|
|
3841
|
+
interface MagickoAiHomepageProps extends React.SVGProps<SVGSVGElement> {
|
|
3842
|
+
size?: number | string;
|
|
3843
|
+
}
|
|
3844
|
+
/**
|
|
3845
|
+
* MagickoAiHomepage icon component
|
|
3846
|
+
* @example
|
|
3847
|
+
* ```tsx
|
|
3848
|
+
* import { MagickoAiHomepage } from 'magick-icons';
|
|
3849
|
+
*
|
|
3850
|
+
* <MagickoAiHomepage size={24} className="text-blue-500" strokeWidth={2} />
|
|
3851
|
+
* ```
|
|
3852
|
+
*/
|
|
3853
|
+
declare const MagickoAiHomepage: React.ForwardRefExoticComponent<Omit<MagickoAiHomepageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3854
|
+
|
|
3855
|
+
/**
|
|
3856
|
+
* Props for the MagickoAiHospital icon component
|
|
3857
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3858
|
+
*/
|
|
3859
|
+
interface MagickoAiHospitalProps extends React.SVGProps<SVGSVGElement> {
|
|
3860
|
+
size?: number | string;
|
|
3861
|
+
}
|
|
3862
|
+
/**
|
|
3863
|
+
* MagickoAiHospital icon component
|
|
3864
|
+
* @example
|
|
3865
|
+
* ```tsx
|
|
3866
|
+
* import { MagickoAiHospital } from 'magick-icons';
|
|
3867
|
+
*
|
|
3868
|
+
* <MagickoAiHospital size={24} className="text-blue-500" strokeWidth={2} />
|
|
3869
|
+
* ```
|
|
3870
|
+
*/
|
|
3871
|
+
declare const MagickoAiHospital: React.ForwardRefExoticComponent<Omit<MagickoAiHospitalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3872
|
+
|
|
3873
|
+
/**
|
|
3874
|
+
* Props for the MagickoAiHousing icon component
|
|
3875
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3876
|
+
*/
|
|
3877
|
+
interface MagickoAiHousingProps extends React.SVGProps<SVGSVGElement> {
|
|
3878
|
+
size?: number | string;
|
|
3879
|
+
}
|
|
3880
|
+
/**
|
|
3881
|
+
* MagickoAiHousing icon component
|
|
3882
|
+
* @example
|
|
3883
|
+
* ```tsx
|
|
3884
|
+
* import { MagickoAiHousing } from 'magick-icons';
|
|
3885
|
+
*
|
|
3886
|
+
* <MagickoAiHousing size={24} className="text-blue-500" strokeWidth={2} />
|
|
3887
|
+
* ```
|
|
3888
|
+
*/
|
|
3889
|
+
declare const MagickoAiHousing: React.ForwardRefExoticComponent<Omit<MagickoAiHousingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3890
|
+
|
|
3891
|
+
/**
|
|
3892
|
+
* Props for the MagickoAiLandscape icon component
|
|
3893
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3894
|
+
*/
|
|
3895
|
+
interface MagickoAiLandscapeProps extends React.SVGProps<SVGSVGElement> {
|
|
3896
|
+
size?: number | string;
|
|
3897
|
+
}
|
|
3898
|
+
/**
|
|
3899
|
+
* MagickoAiLandscape icon component
|
|
3900
|
+
* @example
|
|
3901
|
+
* ```tsx
|
|
3902
|
+
* import { MagickoAiLandscape } from 'magick-icons';
|
|
3903
|
+
*
|
|
3904
|
+
* <MagickoAiLandscape size={24} className="text-blue-500" strokeWidth={2} />
|
|
3905
|
+
* ```
|
|
3906
|
+
*/
|
|
3907
|
+
declare const MagickoAiLandscape: React.ForwardRefExoticComponent<Omit<MagickoAiLandscapeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3908
|
+
|
|
3909
|
+
/**
|
|
3910
|
+
* Props for the MagickoAiLoveletter icon component
|
|
3911
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3912
|
+
*/
|
|
3913
|
+
interface MagickoAiLoveletterProps extends React.SVGProps<SVGSVGElement> {
|
|
3914
|
+
size?: number | string;
|
|
3915
|
+
}
|
|
3916
|
+
/**
|
|
3917
|
+
* MagickoAiLoveletter icon component
|
|
3918
|
+
* @example
|
|
3919
|
+
* ```tsx
|
|
3920
|
+
* import { MagickoAiLoveletter } from 'magick-icons';
|
|
3921
|
+
*
|
|
3922
|
+
* <MagickoAiLoveletter size={24} className="text-blue-500" strokeWidth={2} />
|
|
3923
|
+
* ```
|
|
3924
|
+
*/
|
|
3925
|
+
declare const MagickoAiLoveletter: React.ForwardRefExoticComponent<Omit<MagickoAiLoveletterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3926
|
+
|
|
3927
|
+
/**
|
|
3928
|
+
* Props for the MagickoAiMagicHat icon component
|
|
3929
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3930
|
+
*/
|
|
3931
|
+
interface MagickoAiMagicHatProps extends React.SVGProps<SVGSVGElement> {
|
|
3932
|
+
size?: number | string;
|
|
3933
|
+
}
|
|
3934
|
+
/**
|
|
3935
|
+
* MagickoAiMagicHat icon component
|
|
3936
|
+
* @example
|
|
3937
|
+
* ```tsx
|
|
3938
|
+
* import { MagickoAiMagicHat } from 'magick-icons';
|
|
3939
|
+
*
|
|
3940
|
+
* <MagickoAiMagicHat size={24} className="text-blue-500" strokeWidth={2} />
|
|
3941
|
+
* ```
|
|
3942
|
+
*/
|
|
3943
|
+
declare const MagickoAiMagicHat: React.ForwardRefExoticComponent<Omit<MagickoAiMagicHatProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3944
|
+
|
|
3945
|
+
/**
|
|
3946
|
+
* Props for the MagickoAiMessage icon component
|
|
3947
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3948
|
+
*/
|
|
3949
|
+
interface MagickoAiMessageProps extends React.SVGProps<SVGSVGElement> {
|
|
3950
|
+
size?: number | string;
|
|
3951
|
+
}
|
|
3952
|
+
/**
|
|
3953
|
+
* MagickoAiMessage icon component
|
|
3954
|
+
* @example
|
|
3955
|
+
* ```tsx
|
|
3956
|
+
* import { MagickoAiMessage } from 'magick-icons';
|
|
3957
|
+
*
|
|
3958
|
+
* <MagickoAiMessage size={24} className="text-blue-500" strokeWidth={2} />
|
|
3959
|
+
* ```
|
|
3960
|
+
*/
|
|
3961
|
+
declare const MagickoAiMessage: React.ForwardRefExoticComponent<Omit<MagickoAiMessageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3962
|
+
|
|
3963
|
+
/**
|
|
3964
|
+
* Props for the MagickoAiMicrophone icon component
|
|
3965
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3966
|
+
*/
|
|
3967
|
+
interface MagickoAiMicrophoneProps extends React.SVGProps<SVGSVGElement> {
|
|
3968
|
+
size?: number | string;
|
|
3969
|
+
}
|
|
3970
|
+
/**
|
|
3971
|
+
* MagickoAiMicrophone icon component
|
|
3972
|
+
* @example
|
|
3973
|
+
* ```tsx
|
|
3974
|
+
* import { MagickoAiMicrophone } from 'magick-icons';
|
|
3975
|
+
*
|
|
3976
|
+
* <MagickoAiMicrophone size={24} className="text-blue-500" strokeWidth={2} />
|
|
3977
|
+
* ```
|
|
3978
|
+
*/
|
|
3979
|
+
declare const MagickoAiMicrophone: React.ForwardRefExoticComponent<Omit<MagickoAiMicrophoneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3980
|
+
|
|
3981
|
+
/**
|
|
3982
|
+
* Props for the MagickoAiNote icon component
|
|
3983
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3984
|
+
*/
|
|
3985
|
+
interface MagickoAiNoteProps extends React.SVGProps<SVGSVGElement> {
|
|
3986
|
+
size?: number | string;
|
|
3987
|
+
}
|
|
3988
|
+
/**
|
|
3989
|
+
* MagickoAiNote icon component
|
|
3990
|
+
* @example
|
|
3991
|
+
* ```tsx
|
|
3992
|
+
* import { MagickoAiNote } from 'magick-icons';
|
|
3993
|
+
*
|
|
3994
|
+
* <MagickoAiNote size={24} className="text-blue-500" strokeWidth={2} />
|
|
3995
|
+
* ```
|
|
3996
|
+
*/
|
|
3997
|
+
declare const MagickoAiNote: React.ForwardRefExoticComponent<Omit<MagickoAiNoteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3998
|
+
|
|
3999
|
+
/**
|
|
4000
|
+
* Props for the MagickoAiPaintBrush icon component
|
|
4001
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4002
|
+
*/
|
|
4003
|
+
interface MagickoAiPaintBrushProps extends React.SVGProps<SVGSVGElement> {
|
|
4004
|
+
size?: number | string;
|
|
4005
|
+
}
|
|
4006
|
+
/**
|
|
4007
|
+
* MagickoAiPaintBrush icon component
|
|
4008
|
+
* @example
|
|
4009
|
+
* ```tsx
|
|
4010
|
+
* import { MagickoAiPaintBrush } from 'magick-icons';
|
|
4011
|
+
*
|
|
4012
|
+
* <MagickoAiPaintBrush size={24} className="text-blue-500" strokeWidth={2} />
|
|
4013
|
+
* ```
|
|
4014
|
+
*/
|
|
4015
|
+
declare const MagickoAiPaintBrush: React.ForwardRefExoticComponent<Omit<MagickoAiPaintBrushProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4016
|
+
|
|
4017
|
+
/**
|
|
4018
|
+
* Props for the MagickoAiPaintroller icon component
|
|
4019
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4020
|
+
*/
|
|
4021
|
+
interface MagickoAiPaintrollerProps extends React.SVGProps<SVGSVGElement> {
|
|
4022
|
+
size?: number | string;
|
|
4023
|
+
}
|
|
4024
|
+
/**
|
|
4025
|
+
* MagickoAiPaintroller icon component
|
|
4026
|
+
* @example
|
|
4027
|
+
* ```tsx
|
|
4028
|
+
* import { MagickoAiPaintroller } from 'magick-icons';
|
|
4029
|
+
*
|
|
4030
|
+
* <MagickoAiPaintroller size={24} className="text-blue-500" strokeWidth={2} />
|
|
4031
|
+
* ```
|
|
4032
|
+
*/
|
|
4033
|
+
declare const MagickoAiPaintroller: React.ForwardRefExoticComponent<Omit<MagickoAiPaintrollerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4034
|
+
|
|
4035
|
+
/**
|
|
4036
|
+
* Props for the MagickoAiPenEdit icon component
|
|
4037
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4038
|
+
*/
|
|
4039
|
+
interface MagickoAiPenEditProps extends React.SVGProps<SVGSVGElement> {
|
|
4040
|
+
size?: number | string;
|
|
4041
|
+
}
|
|
4042
|
+
/**
|
|
4043
|
+
* MagickoAiPenEdit icon component
|
|
4044
|
+
* @example
|
|
4045
|
+
* ```tsx
|
|
4046
|
+
* import { MagickoAiPenEdit } from 'magick-icons';
|
|
4047
|
+
*
|
|
4048
|
+
* <MagickoAiPenEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
4049
|
+
* ```
|
|
4050
|
+
*/
|
|
4051
|
+
declare const MagickoAiPenEdit: React.ForwardRefExoticComponent<Omit<MagickoAiPenEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4052
|
+
|
|
4053
|
+
/**
|
|
4054
|
+
* Props for the MagickoAiPoweredSupport icon component
|
|
4055
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4056
|
+
*/
|
|
4057
|
+
interface MagickoAiPoweredSupportProps extends React.SVGProps<SVGSVGElement> {
|
|
4058
|
+
size?: number | string;
|
|
4059
|
+
}
|
|
4060
|
+
/**
|
|
4061
|
+
* MagickoAiPoweredSupport icon component
|
|
4062
|
+
* @example
|
|
4063
|
+
* ```tsx
|
|
4064
|
+
* import { MagickoAiPoweredSupport } from 'magick-icons';
|
|
4065
|
+
*
|
|
4066
|
+
* <MagickoAiPoweredSupport size={24} className="text-blue-500" strokeWidth={2} />
|
|
4067
|
+
* ```
|
|
4068
|
+
*/
|
|
4069
|
+
declare const MagickoAiPoweredSupport: React.ForwardRefExoticComponent<Omit<MagickoAiPoweredSupportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4070
|
+
|
|
4071
|
+
/**
|
|
4072
|
+
* Props for the MagickoAiRecordVideo icon component
|
|
4073
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4074
|
+
*/
|
|
4075
|
+
interface MagickoAiRecordVideoProps extends React.SVGProps<SVGSVGElement> {
|
|
4076
|
+
size?: number | string;
|
|
4077
|
+
}
|
|
4078
|
+
/**
|
|
4079
|
+
* MagickoAiRecordVideo icon component
|
|
4080
|
+
* @example
|
|
4081
|
+
* ```tsx
|
|
4082
|
+
* import { MagickoAiRecordVideo } from 'magick-icons';
|
|
4083
|
+
*
|
|
4084
|
+
* <MagickoAiRecordVideo size={24} className="text-blue-500" strokeWidth={2} />
|
|
4085
|
+
* ```
|
|
4086
|
+
*/
|
|
4087
|
+
declare const MagickoAiRecordVideo: React.ForwardRefExoticComponent<Omit<MagickoAiRecordVideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4088
|
+
|
|
4089
|
+
/**
|
|
4090
|
+
* Props for the MagickoAiSandTimer icon component
|
|
4091
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4092
|
+
*/
|
|
4093
|
+
interface MagickoAiSandTimerProps extends React.SVGProps<SVGSVGElement> {
|
|
4094
|
+
size?: number | string;
|
|
4095
|
+
}
|
|
4096
|
+
/**
|
|
4097
|
+
* MagickoAiSandTimer icon component
|
|
4098
|
+
* @example
|
|
4099
|
+
* ```tsx
|
|
4100
|
+
* import { MagickoAiSandTimer } from 'magick-icons';
|
|
4101
|
+
*
|
|
4102
|
+
* <MagickoAiSandTimer size={24} className="text-blue-500" strokeWidth={2} />
|
|
4103
|
+
* ```
|
|
4104
|
+
*/
|
|
4105
|
+
declare const MagickoAiSandTimer: React.ForwardRefExoticComponent<Omit<MagickoAiSandTimerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4106
|
+
|
|
4107
|
+
/**
|
|
4108
|
+
* Props for the MagickoAiSendMessage icon component
|
|
4109
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4110
|
+
*/
|
|
4111
|
+
interface MagickoAiSendMessageProps extends React.SVGProps<SVGSVGElement> {
|
|
4112
|
+
size?: number | string;
|
|
4113
|
+
}
|
|
4114
|
+
/**
|
|
4115
|
+
* MagickoAiSendMessage icon component
|
|
4116
|
+
* @example
|
|
4117
|
+
* ```tsx
|
|
4118
|
+
* import { MagickoAiSendMessage } from 'magick-icons';
|
|
4119
|
+
*
|
|
4120
|
+
* <MagickoAiSendMessage size={24} className="text-blue-500" strokeWidth={2} />
|
|
4121
|
+
* ```
|
|
4122
|
+
*/
|
|
4123
|
+
declare const MagickoAiSendMessage: React.ForwardRefExoticComponent<Omit<MagickoAiSendMessageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4124
|
+
|
|
4125
|
+
/**
|
|
4126
|
+
* Props for the MagickoAiShapeTriangle icon component
|
|
4127
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4128
|
+
*/
|
|
4129
|
+
interface MagickoAiShapeTriangleProps extends React.SVGProps<SVGSVGElement> {
|
|
4130
|
+
size?: number | string;
|
|
4131
|
+
}
|
|
4132
|
+
/**
|
|
4133
|
+
* MagickoAiShapeTriangle icon component
|
|
4134
|
+
* @example
|
|
4135
|
+
* ```tsx
|
|
4136
|
+
* import { MagickoAiShapeTriangle } from 'magick-icons';
|
|
4137
|
+
*
|
|
4138
|
+
* <MagickoAiShapeTriangle size={24} className="text-blue-500" strokeWidth={2} />
|
|
4139
|
+
* ```
|
|
4140
|
+
*/
|
|
4141
|
+
declare const MagickoAiShapeTriangle: React.ForwardRefExoticComponent<Omit<MagickoAiShapeTriangleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4142
|
+
|
|
4143
|
+
/**
|
|
4144
|
+
* Props for the MagickoAiSparkle icon component
|
|
4145
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4146
|
+
*/
|
|
4147
|
+
interface MagickoAiSparkleProps extends React.SVGProps<SVGSVGElement> {
|
|
4148
|
+
size?: number | string;
|
|
4149
|
+
}
|
|
4150
|
+
/**
|
|
4151
|
+
* MagickoAiSparkle icon component
|
|
4152
|
+
* @example
|
|
4153
|
+
* ```tsx
|
|
4154
|
+
* import { MagickoAiSparkle } from 'magick-icons';
|
|
4155
|
+
*
|
|
4156
|
+
* <MagickoAiSparkle size={24} className="text-blue-500" strokeWidth={2} />
|
|
4157
|
+
* ```
|
|
4158
|
+
*/
|
|
4159
|
+
declare const MagickoAiSparkle: React.ForwardRefExoticComponent<Omit<MagickoAiSparkleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4160
|
+
|
|
4161
|
+
/**
|
|
4162
|
+
* Props for the MagickoAiSyringe icon component
|
|
4163
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4164
|
+
*/
|
|
4165
|
+
interface MagickoAiSyringeProps extends React.SVGProps<SVGSVGElement> {
|
|
4166
|
+
size?: number | string;
|
|
4167
|
+
}
|
|
4168
|
+
/**
|
|
4169
|
+
* MagickoAiSyringe icon component
|
|
4170
|
+
* @example
|
|
4171
|
+
* ```tsx
|
|
4172
|
+
* import { MagickoAiSyringe } from 'magick-icons';
|
|
4173
|
+
*
|
|
4174
|
+
* <MagickoAiSyringe size={24} className="text-blue-500" strokeWidth={2} />
|
|
4175
|
+
* ```
|
|
4176
|
+
*/
|
|
4177
|
+
declare const MagickoAiSyringe: React.ForwardRefExoticComponent<Omit<MagickoAiSyringeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4178
|
+
|
|
4179
|
+
/**
|
|
4180
|
+
* Props for the MagickoAiTagPrice icon component
|
|
4181
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4182
|
+
*/
|
|
4183
|
+
interface MagickoAiTagPriceProps extends React.SVGProps<SVGSVGElement> {
|
|
4184
|
+
size?: number | string;
|
|
4185
|
+
}
|
|
4186
|
+
/**
|
|
4187
|
+
* MagickoAiTagPrice icon component
|
|
4188
|
+
* @example
|
|
4189
|
+
* ```tsx
|
|
4190
|
+
* import { MagickoAiTagPrice } from 'magick-icons';
|
|
4191
|
+
*
|
|
4192
|
+
* <MagickoAiTagPrice size={24} className="text-blue-500" strokeWidth={2} />
|
|
4193
|
+
* ```
|
|
4194
|
+
*/
|
|
4195
|
+
declare const MagickoAiTagPrice: React.ForwardRefExoticComponent<Omit<MagickoAiTagPriceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4196
|
+
|
|
4197
|
+
/**
|
|
4198
|
+
* Props for the MagickoAiTools icon component
|
|
4199
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
4200
|
+
*/
|
|
4201
|
+
interface MagickoAiToolsProps extends React.SVGProps<SVGSVGElement> {
|
|
4202
|
+
size?: number | string;
|
|
4203
|
+
}
|
|
4204
|
+
/**
|
|
4205
|
+
* MagickoAiTools icon component
|
|
4206
|
+
* @example
|
|
4207
|
+
* ```tsx
|
|
4208
|
+
* import { MagickoAiTools } from 'magick-icons';
|
|
4209
|
+
*
|
|
4210
|
+
* <MagickoAiTools size={24} className="text-blue-500" strokeWidth={2} />
|
|
4211
|
+
* ```
|
|
4212
|
+
*/
|
|
4213
|
+
declare const MagickoAiTools: React.ForwardRefExoticComponent<Omit<MagickoAiToolsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
4214
|
+
|
|
3675
4215
|
/**
|
|
3676
4216
|
* Props for the MagickoCheck icon component
|
|
3677
4217
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -3978,4 +4518,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3978
4518
|
*/
|
|
3979
4519
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3980
4520
|
|
|
3981
|
-
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, 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 };
|
|
4521
|
+
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, 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 };
|