magick-icons 0.1.217 → 0.1.219
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 +775 -1
- package/index.d.ts +775 -1
- package/index.js +837 -160
- package/index.js.map +1 -1
- package/index.mjs +798 -164
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2538,6 +2538,24 @@ interface IconsaxAiScienceBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2538
2538
|
*/
|
|
2539
2539
|
declare const IconsaxAiScienceBold: React.ForwardRefExoticComponent<Omit<IconsaxAiScienceBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2540
2540
|
|
|
2541
|
+
/**
|
|
2542
|
+
* Props for the IconsaxAttachCircle icon component
|
|
2543
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2544
|
+
*/
|
|
2545
|
+
interface IconsaxAttachCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
2546
|
+
size?: number | string;
|
|
2547
|
+
}
|
|
2548
|
+
/**
|
|
2549
|
+
* IconsaxAttachCircle icon component
|
|
2550
|
+
* @example
|
|
2551
|
+
* ```tsx
|
|
2552
|
+
* import { IconsaxAttachCircle } from 'magick-icons';
|
|
2553
|
+
*
|
|
2554
|
+
* <IconsaxAttachCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
2555
|
+
* ```
|
|
2556
|
+
*/
|
|
2557
|
+
declare const IconsaxAttachCircle: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2558
|
+
|
|
2541
2559
|
/**
|
|
2542
2560
|
* Props for the IconsaxAttachCircleBold icon component
|
|
2543
2561
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2574,6 +2592,42 @@ interface IconsaxBrainBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2574
2592
|
*/
|
|
2575
2593
|
declare const IconsaxBrainBold: React.ForwardRefExoticComponent<Omit<IconsaxBrainBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2576
2594
|
|
|
2595
|
+
/**
|
|
2596
|
+
* Props for the IconsaxFeather2 icon component
|
|
2597
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2598
|
+
*/
|
|
2599
|
+
interface IconsaxFeather2Props extends React.SVGProps<SVGSVGElement> {
|
|
2600
|
+
size?: number | string;
|
|
2601
|
+
}
|
|
2602
|
+
/**
|
|
2603
|
+
* IconsaxFeather2 icon component
|
|
2604
|
+
* @example
|
|
2605
|
+
* ```tsx
|
|
2606
|
+
* import { IconsaxFeather2 } from 'magick-icons';
|
|
2607
|
+
*
|
|
2608
|
+
* <IconsaxFeather2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2609
|
+
* ```
|
|
2610
|
+
*/
|
|
2611
|
+
declare const IconsaxFeather2: React.ForwardRefExoticComponent<Omit<IconsaxFeather2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2612
|
+
|
|
2613
|
+
/**
|
|
2614
|
+
* Props for the IconsaxMinimize4 icon component
|
|
2615
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2616
|
+
*/
|
|
2617
|
+
interface IconsaxMinimize4Props extends React.SVGProps<SVGSVGElement> {
|
|
2618
|
+
size?: number | string;
|
|
2619
|
+
}
|
|
2620
|
+
/**
|
|
2621
|
+
* IconsaxMinimize4 icon component
|
|
2622
|
+
* @example
|
|
2623
|
+
* ```tsx
|
|
2624
|
+
* import { IconsaxMinimize4 } from 'magick-icons';
|
|
2625
|
+
*
|
|
2626
|
+
* <IconsaxMinimize4 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2627
|
+
* ```
|
|
2628
|
+
*/
|
|
2629
|
+
declare const IconsaxMinimize4: React.ForwardRefExoticComponent<Omit<IconsaxMinimize4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2630
|
+
|
|
2577
2631
|
/**
|
|
2578
2632
|
* Props for the IconsaxMonetizeBold icon component
|
|
2579
2633
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2628,6 +2682,24 @@ interface IconsaxPeopleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2628
2682
|
*/
|
|
2629
2683
|
declare const IconsaxPeopleBold: React.ForwardRefExoticComponent<Omit<IconsaxPeopleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2630
2684
|
|
|
2685
|
+
/**
|
|
2686
|
+
* Props for the IconsaxPin icon component
|
|
2687
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2688
|
+
*/
|
|
2689
|
+
interface IconsaxPinProps extends React.SVGProps<SVGSVGElement> {
|
|
2690
|
+
size?: number | string;
|
|
2691
|
+
}
|
|
2692
|
+
/**
|
|
2693
|
+
* IconsaxPin icon component
|
|
2694
|
+
* @example
|
|
2695
|
+
* ```tsx
|
|
2696
|
+
* import { IconsaxPin } from 'magick-icons';
|
|
2697
|
+
*
|
|
2698
|
+
* <IconsaxPin size={24} className="text-blue-500" strokeWidth={2} />
|
|
2699
|
+
* ```
|
|
2700
|
+
*/
|
|
2701
|
+
declare const IconsaxPin: React.ForwardRefExoticComponent<Omit<IconsaxPinProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2702
|
+
|
|
2631
2703
|
/**
|
|
2632
2704
|
* Props for the IconsaxTaskSquareBold icon component
|
|
2633
2705
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2646,6 +2718,24 @@ interface IconsaxTaskSquareBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2646
2718
|
*/
|
|
2647
2719
|
declare const IconsaxTaskSquareBold: React.ForwardRefExoticComponent<Omit<IconsaxTaskSquareBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2648
2720
|
|
|
2721
|
+
/**
|
|
2722
|
+
* Props for the IconsaxVideoCamera icon component
|
|
2723
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2724
|
+
*/
|
|
2725
|
+
interface IconsaxVideoCameraProps extends React.SVGProps<SVGSVGElement> {
|
|
2726
|
+
size?: number | string;
|
|
2727
|
+
}
|
|
2728
|
+
/**
|
|
2729
|
+
* IconsaxVideoCamera icon component
|
|
2730
|
+
* @example
|
|
2731
|
+
* ```tsx
|
|
2732
|
+
* import { IconsaxVideoCamera } from 'magick-icons';
|
|
2733
|
+
*
|
|
2734
|
+
* <IconsaxVideoCamera size={24} className="text-blue-500" strokeWidth={2} />
|
|
2735
|
+
* ```
|
|
2736
|
+
*/
|
|
2737
|
+
declare const IconsaxVideoCamera: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2738
|
+
|
|
2649
2739
|
/**
|
|
2650
2740
|
* Props for the IconsaxVideoCameraBold icon component
|
|
2651
2741
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2718,6 +2808,78 @@ interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2718
2808
|
*/
|
|
2719
2809
|
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2720
2810
|
|
|
2811
|
+
/**
|
|
2812
|
+
* Props for the Instagram1 icon component
|
|
2813
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2814
|
+
*/
|
|
2815
|
+
interface Instagram1Props extends React.SVGProps<SVGSVGElement> {
|
|
2816
|
+
size?: number | string;
|
|
2817
|
+
}
|
|
2818
|
+
/**
|
|
2819
|
+
* Instagram1 icon component
|
|
2820
|
+
* @example
|
|
2821
|
+
* ```tsx
|
|
2822
|
+
* import { Instagram1 } from 'magick-icons';
|
|
2823
|
+
*
|
|
2824
|
+
* <Instagram1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2825
|
+
* ```
|
|
2826
|
+
*/
|
|
2827
|
+
declare const Instagram1: React.ForwardRefExoticComponent<Omit<Instagram1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2828
|
+
|
|
2829
|
+
/**
|
|
2830
|
+
* Props for the Instagram11 icon component
|
|
2831
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2832
|
+
*/
|
|
2833
|
+
interface Instagram11Props extends React.SVGProps<SVGSVGElement> {
|
|
2834
|
+
size?: number | string;
|
|
2835
|
+
}
|
|
2836
|
+
/**
|
|
2837
|
+
* Instagram11 icon component
|
|
2838
|
+
* @example
|
|
2839
|
+
* ```tsx
|
|
2840
|
+
* import { Instagram11 } from 'magick-icons';
|
|
2841
|
+
*
|
|
2842
|
+
* <Instagram11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2843
|
+
* ```
|
|
2844
|
+
*/
|
|
2845
|
+
declare const Instagram11: React.ForwardRefExoticComponent<Omit<Instagram11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2846
|
+
|
|
2847
|
+
/**
|
|
2848
|
+
* Props for the Judge1 icon component
|
|
2849
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2850
|
+
*/
|
|
2851
|
+
interface Judge1Props extends React.SVGProps<SVGSVGElement> {
|
|
2852
|
+
size?: number | string;
|
|
2853
|
+
}
|
|
2854
|
+
/**
|
|
2855
|
+
* Judge1 icon component
|
|
2856
|
+
* @example
|
|
2857
|
+
* ```tsx
|
|
2858
|
+
* import { Judge1 } from 'magick-icons';
|
|
2859
|
+
*
|
|
2860
|
+
* <Judge1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2861
|
+
* ```
|
|
2862
|
+
*/
|
|
2863
|
+
declare const Judge1: React.ForwardRefExoticComponent<Omit<Judge1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2864
|
+
|
|
2865
|
+
/**
|
|
2866
|
+
* Props for the LayoutAdjust1 icon component
|
|
2867
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2868
|
+
*/
|
|
2869
|
+
interface LayoutAdjust1Props extends React.SVGProps<SVGSVGElement> {
|
|
2870
|
+
size?: number | string;
|
|
2871
|
+
}
|
|
2872
|
+
/**
|
|
2873
|
+
* LayoutAdjust1 icon component
|
|
2874
|
+
* @example
|
|
2875
|
+
* ```tsx
|
|
2876
|
+
* import { LayoutAdjust1 } from 'magick-icons';
|
|
2877
|
+
*
|
|
2878
|
+
* <LayoutAdjust1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2879
|
+
* ```
|
|
2880
|
+
*/
|
|
2881
|
+
declare const LayoutAdjust1: React.ForwardRefExoticComponent<Omit<LayoutAdjust1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2882
|
+
|
|
2721
2883
|
/**
|
|
2722
2884
|
* Props for the Legal icon component
|
|
2723
2885
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2736,6 +2898,42 @@ interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2736
2898
|
*/
|
|
2737
2899
|
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2738
2900
|
|
|
2901
|
+
/**
|
|
2902
|
+
* Props for the Level1 icon component
|
|
2903
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2904
|
+
*/
|
|
2905
|
+
interface Level1Props extends React.SVGProps<SVGSVGElement> {
|
|
2906
|
+
size?: number | string;
|
|
2907
|
+
}
|
|
2908
|
+
/**
|
|
2909
|
+
* Level1 icon component
|
|
2910
|
+
* @example
|
|
2911
|
+
* ```tsx
|
|
2912
|
+
* import { Level1 } from 'magick-icons';
|
|
2913
|
+
*
|
|
2914
|
+
* <Level1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2915
|
+
* ```
|
|
2916
|
+
*/
|
|
2917
|
+
declare const Level1: React.ForwardRefExoticComponent<Omit<Level1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2918
|
+
|
|
2919
|
+
/**
|
|
2920
|
+
* Props for the Lifebuoy1 icon component
|
|
2921
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2922
|
+
*/
|
|
2923
|
+
interface Lifebuoy1Props extends React.SVGProps<SVGSVGElement> {
|
|
2924
|
+
size?: number | string;
|
|
2925
|
+
}
|
|
2926
|
+
/**
|
|
2927
|
+
* Lifebuoy1 icon component
|
|
2928
|
+
* @example
|
|
2929
|
+
* ```tsx
|
|
2930
|
+
* import { Lifebuoy1 } from 'magick-icons';
|
|
2931
|
+
*
|
|
2932
|
+
* <Lifebuoy1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
2933
|
+
* ```
|
|
2934
|
+
*/
|
|
2935
|
+
declare const Lifebuoy1: React.ForwardRefExoticComponent<Omit<Lifebuoy1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2936
|
+
|
|
2739
2937
|
/**
|
|
2740
2938
|
* Props for the LikeBold icon component
|
|
2741
2939
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2862,6 +3060,96 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2862
3060
|
*/
|
|
2863
3061
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2864
3062
|
|
|
3063
|
+
/**
|
|
3064
|
+
* Props for the Location1 icon component
|
|
3065
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3066
|
+
*/
|
|
3067
|
+
interface Location1Props extends React.SVGProps<SVGSVGElement> {
|
|
3068
|
+
size?: number | string;
|
|
3069
|
+
}
|
|
3070
|
+
/**
|
|
3071
|
+
* Location1 icon component
|
|
3072
|
+
* @example
|
|
3073
|
+
* ```tsx
|
|
3074
|
+
* import { Location1 } from 'magick-icons';
|
|
3075
|
+
*
|
|
3076
|
+
* <Location1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3077
|
+
* ```
|
|
3078
|
+
*/
|
|
3079
|
+
declare const Location1: React.ForwardRefExoticComponent<Omit<Location1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3080
|
+
|
|
3081
|
+
/**
|
|
3082
|
+
* Props for the LocationAdd1 icon component
|
|
3083
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3084
|
+
*/
|
|
3085
|
+
interface LocationAdd1Props extends React.SVGProps<SVGSVGElement> {
|
|
3086
|
+
size?: number | string;
|
|
3087
|
+
}
|
|
3088
|
+
/**
|
|
3089
|
+
* LocationAdd1 icon component
|
|
3090
|
+
* @example
|
|
3091
|
+
* ```tsx
|
|
3092
|
+
* import { LocationAdd1 } from 'magick-icons';
|
|
3093
|
+
*
|
|
3094
|
+
* <LocationAdd1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3095
|
+
* ```
|
|
3096
|
+
*/
|
|
3097
|
+
declare const LocationAdd1: React.ForwardRefExoticComponent<Omit<LocationAdd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3098
|
+
|
|
3099
|
+
/**
|
|
3100
|
+
* Props for the LocationCross1 icon component
|
|
3101
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3102
|
+
*/
|
|
3103
|
+
interface LocationCross1Props extends React.SVGProps<SVGSVGElement> {
|
|
3104
|
+
size?: number | string;
|
|
3105
|
+
}
|
|
3106
|
+
/**
|
|
3107
|
+
* LocationCross1 icon component
|
|
3108
|
+
* @example
|
|
3109
|
+
* ```tsx
|
|
3110
|
+
* import { LocationCross1 } from 'magick-icons';
|
|
3111
|
+
*
|
|
3112
|
+
* <LocationCross1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3113
|
+
* ```
|
|
3114
|
+
*/
|
|
3115
|
+
declare const LocationCross1: React.ForwardRefExoticComponent<Omit<LocationCross1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3116
|
+
|
|
3117
|
+
/**
|
|
3118
|
+
* Props for the LocationMinus1 icon component
|
|
3119
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3120
|
+
*/
|
|
3121
|
+
interface LocationMinus1Props extends React.SVGProps<SVGSVGElement> {
|
|
3122
|
+
size?: number | string;
|
|
3123
|
+
}
|
|
3124
|
+
/**
|
|
3125
|
+
* LocationMinus1 icon component
|
|
3126
|
+
* @example
|
|
3127
|
+
* ```tsx
|
|
3128
|
+
* import { LocationMinus1 } from 'magick-icons';
|
|
3129
|
+
*
|
|
3130
|
+
* <LocationMinus1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3131
|
+
* ```
|
|
3132
|
+
*/
|
|
3133
|
+
declare const LocationMinus1: React.ForwardRefExoticComponent<Omit<LocationMinus1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3134
|
+
|
|
3135
|
+
/**
|
|
3136
|
+
* Props for the LocationTick1 icon component
|
|
3137
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3138
|
+
*/
|
|
3139
|
+
interface LocationTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
3140
|
+
size?: number | string;
|
|
3141
|
+
}
|
|
3142
|
+
/**
|
|
3143
|
+
* LocationTick1 icon component
|
|
3144
|
+
* @example
|
|
3145
|
+
* ```tsx
|
|
3146
|
+
* import { LocationTick1 } from 'magick-icons';
|
|
3147
|
+
*
|
|
3148
|
+
* <LocationTick1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3149
|
+
* ```
|
|
3150
|
+
*/
|
|
3151
|
+
declare const LocationTick1: React.ForwardRefExoticComponent<Omit<LocationTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3152
|
+
|
|
2865
3153
|
/**
|
|
2866
3154
|
* Props for the Lock icon component
|
|
2867
3155
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -2898,6 +3186,492 @@ interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2898
3186
|
*/
|
|
2899
3187
|
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2900
3188
|
|
|
3189
|
+
/**
|
|
3190
|
+
* Props for the Magicko365Arrow icon component
|
|
3191
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3192
|
+
*/
|
|
3193
|
+
interface Magicko365ArrowProps extends React.SVGProps<SVGSVGElement> {
|
|
3194
|
+
size?: number | string;
|
|
3195
|
+
}
|
|
3196
|
+
/**
|
|
3197
|
+
* Magicko365Arrow icon component
|
|
3198
|
+
* @example
|
|
3199
|
+
* ```tsx
|
|
3200
|
+
* import { Magicko365Arrow } from 'magick-icons';
|
|
3201
|
+
*
|
|
3202
|
+
* <Magicko365Arrow size={24} className="text-blue-500" strokeWidth={2} />
|
|
3203
|
+
* ```
|
|
3204
|
+
*/
|
|
3205
|
+
declare const Magicko365Arrow: React.ForwardRefExoticComponent<Omit<Magicko365ArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3206
|
+
|
|
3207
|
+
/**
|
|
3208
|
+
* Props for the Magicko3DotsMore icon component
|
|
3209
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3210
|
+
*/
|
|
3211
|
+
interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
|
|
3212
|
+
size?: number | string;
|
|
3213
|
+
}
|
|
3214
|
+
/**
|
|
3215
|
+
* Magicko3DotsMore icon component
|
|
3216
|
+
* @example
|
|
3217
|
+
* ```tsx
|
|
3218
|
+
* import { Magicko3DotsMore } from 'magick-icons';
|
|
3219
|
+
*
|
|
3220
|
+
* <Magicko3DotsMore size={24} className="text-blue-500" strokeWidth={2} />
|
|
3221
|
+
* ```
|
|
3222
|
+
*/
|
|
3223
|
+
declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3224
|
+
|
|
3225
|
+
/**
|
|
3226
|
+
* Props for the Magicko3dCubeScan1 icon component
|
|
3227
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3228
|
+
*/
|
|
3229
|
+
interface Magicko3dCubeScan1Props extends React.SVGProps<SVGSVGElement> {
|
|
3230
|
+
size?: number | string;
|
|
3231
|
+
}
|
|
3232
|
+
/**
|
|
3233
|
+
* Magicko3dCubeScan1 icon component
|
|
3234
|
+
* @example
|
|
3235
|
+
* ```tsx
|
|
3236
|
+
* import { Magicko3dCubeScan1 } from 'magick-icons';
|
|
3237
|
+
*
|
|
3238
|
+
* <Magicko3dCubeScan1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3239
|
+
* ```
|
|
3240
|
+
*/
|
|
3241
|
+
declare const Magicko3dCubeScan1: React.ForwardRefExoticComponent<Omit<Magicko3dCubeScan1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3242
|
+
|
|
3243
|
+
/**
|
|
3244
|
+
* Props for the Magicko3dRotate1 icon component
|
|
3245
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3246
|
+
*/
|
|
3247
|
+
interface Magicko3dRotate1Props extends React.SVGProps<SVGSVGElement> {
|
|
3248
|
+
size?: number | string;
|
|
3249
|
+
}
|
|
3250
|
+
/**
|
|
3251
|
+
* Magicko3dRotate1 icon component
|
|
3252
|
+
* @example
|
|
3253
|
+
* ```tsx
|
|
3254
|
+
* import { Magicko3dRotate1 } from 'magick-icons';
|
|
3255
|
+
*
|
|
3256
|
+
* <Magicko3dRotate1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3257
|
+
* ```
|
|
3258
|
+
*/
|
|
3259
|
+
declare const Magicko3dRotate1: React.ForwardRefExoticComponent<Omit<Magicko3dRotate1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3260
|
+
|
|
3261
|
+
/**
|
|
3262
|
+
* Props for the Magicko3dSquare1 icon component
|
|
3263
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3264
|
+
*/
|
|
3265
|
+
interface Magicko3dSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
3266
|
+
size?: number | string;
|
|
3267
|
+
}
|
|
3268
|
+
/**
|
|
3269
|
+
* Magicko3dSquare1 icon component
|
|
3270
|
+
* @example
|
|
3271
|
+
* ```tsx
|
|
3272
|
+
* import { Magicko3dSquare1 } from 'magick-icons';
|
|
3273
|
+
*
|
|
3274
|
+
* <Magicko3dSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3275
|
+
* ```
|
|
3276
|
+
*/
|
|
3277
|
+
declare const Magicko3dSquare1: React.ForwardRefExoticComponent<Omit<Magicko3dSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3278
|
+
|
|
3279
|
+
/**
|
|
3280
|
+
* Props for the MagickoActivity icon component
|
|
3281
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3282
|
+
*/
|
|
3283
|
+
interface MagickoActivityProps extends React.SVGProps<SVGSVGElement> {
|
|
3284
|
+
size?: number | string;
|
|
3285
|
+
}
|
|
3286
|
+
/**
|
|
3287
|
+
* MagickoActivity icon component
|
|
3288
|
+
* @example
|
|
3289
|
+
* ```tsx
|
|
3290
|
+
* import { MagickoActivity } from 'magick-icons';
|
|
3291
|
+
*
|
|
3292
|
+
* <MagickoActivity size={24} className="text-blue-500" strokeWidth={2} />
|
|
3293
|
+
* ```
|
|
3294
|
+
*/
|
|
3295
|
+
declare const MagickoActivity: React.ForwardRefExoticComponent<Omit<MagickoActivityProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3296
|
+
|
|
3297
|
+
/**
|
|
3298
|
+
* Props for the MagickoAdd icon component
|
|
3299
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3300
|
+
*/
|
|
3301
|
+
interface MagickoAddProps extends React.SVGProps<SVGSVGElement> {
|
|
3302
|
+
size?: number | string;
|
|
3303
|
+
}
|
|
3304
|
+
/**
|
|
3305
|
+
* MagickoAdd icon component
|
|
3306
|
+
* @example
|
|
3307
|
+
* ```tsx
|
|
3308
|
+
* import { MagickoAdd } from 'magick-icons';
|
|
3309
|
+
*
|
|
3310
|
+
* <MagickoAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
3311
|
+
* ```
|
|
3312
|
+
*/
|
|
3313
|
+
declare const MagickoAdd: React.ForwardRefExoticComponent<Omit<MagickoAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3314
|
+
|
|
3315
|
+
/**
|
|
3316
|
+
* Props for the MagickoAddSquare icon component
|
|
3317
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3318
|
+
*/
|
|
3319
|
+
interface MagickoAddSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
3320
|
+
size?: number | string;
|
|
3321
|
+
}
|
|
3322
|
+
/**
|
|
3323
|
+
* MagickoAddSquare icon component
|
|
3324
|
+
* @example
|
|
3325
|
+
* ```tsx
|
|
3326
|
+
* import { MagickoAddSquare } from 'magick-icons';
|
|
3327
|
+
*
|
|
3328
|
+
* <MagickoAddSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
3329
|
+
* ```
|
|
3330
|
+
*/
|
|
3331
|
+
declare const MagickoAddSquare: React.ForwardRefExoticComponent<Omit<MagickoAddSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3332
|
+
|
|
3333
|
+
/**
|
|
3334
|
+
* Props for the MagickoAi3d icon component
|
|
3335
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3336
|
+
*/
|
|
3337
|
+
interface MagickoAi3dProps extends React.SVGProps<SVGSVGElement> {
|
|
3338
|
+
size?: number | string;
|
|
3339
|
+
}
|
|
3340
|
+
/**
|
|
3341
|
+
* MagickoAi3d icon component
|
|
3342
|
+
* @example
|
|
3343
|
+
* ```tsx
|
|
3344
|
+
* import { MagickoAi3d } from 'magick-icons';
|
|
3345
|
+
*
|
|
3346
|
+
* <MagickoAi3d size={24} className="text-blue-500" strokeWidth={2} />
|
|
3347
|
+
* ```
|
|
3348
|
+
*/
|
|
3349
|
+
declare const MagickoAi3d: React.ForwardRefExoticComponent<Omit<MagickoAi3dProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3350
|
+
|
|
3351
|
+
/**
|
|
3352
|
+
* Props for the MagickoAi3dBox icon component
|
|
3353
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3354
|
+
*/
|
|
3355
|
+
interface MagickoAi3dBoxProps extends React.SVGProps<SVGSVGElement> {
|
|
3356
|
+
size?: number | string;
|
|
3357
|
+
}
|
|
3358
|
+
/**
|
|
3359
|
+
* MagickoAi3dBox icon component
|
|
3360
|
+
* @example
|
|
3361
|
+
* ```tsx
|
|
3362
|
+
* import { MagickoAi3dBox } from 'magick-icons';
|
|
3363
|
+
*
|
|
3364
|
+
* <MagickoAi3dBox size={24} className="text-blue-500" strokeWidth={2} />
|
|
3365
|
+
* ```
|
|
3366
|
+
*/
|
|
3367
|
+
declare const MagickoAi3dBox: React.ForwardRefExoticComponent<Omit<MagickoAi3dBoxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3368
|
+
|
|
3369
|
+
/**
|
|
3370
|
+
* Props for the MagickoAiAc icon component
|
|
3371
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3372
|
+
*/
|
|
3373
|
+
interface MagickoAiAcProps extends React.SVGProps<SVGSVGElement> {
|
|
3374
|
+
size?: number | string;
|
|
3375
|
+
}
|
|
3376
|
+
/**
|
|
3377
|
+
* MagickoAiAc icon component
|
|
3378
|
+
* @example
|
|
3379
|
+
* ```tsx
|
|
3380
|
+
* import { MagickoAiAc } from 'magick-icons';
|
|
3381
|
+
*
|
|
3382
|
+
* <MagickoAiAc size={24} className="text-blue-500" strokeWidth={2} />
|
|
3383
|
+
* ```
|
|
3384
|
+
*/
|
|
3385
|
+
declare const MagickoAiAc: React.ForwardRefExoticComponent<Omit<MagickoAiAcProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3386
|
+
|
|
3387
|
+
/**
|
|
3388
|
+
* Props for the MagickoAiAdd icon component
|
|
3389
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3390
|
+
*/
|
|
3391
|
+
interface MagickoAiAddProps extends React.SVGProps<SVGSVGElement> {
|
|
3392
|
+
size?: number | string;
|
|
3393
|
+
}
|
|
3394
|
+
/**
|
|
3395
|
+
* MagickoAiAdd icon component
|
|
3396
|
+
* @example
|
|
3397
|
+
* ```tsx
|
|
3398
|
+
* import { MagickoAiAdd } from 'magick-icons';
|
|
3399
|
+
*
|
|
3400
|
+
* <MagickoAiAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
3401
|
+
* ```
|
|
3402
|
+
*/
|
|
3403
|
+
declare const MagickoAiAdd: React.ForwardRefExoticComponent<Omit<MagickoAiAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3404
|
+
|
|
3405
|
+
/**
|
|
3406
|
+
* Props for the MagickoAiAntenna icon component
|
|
3407
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3408
|
+
*/
|
|
3409
|
+
interface MagickoAiAntennaProps extends React.SVGProps<SVGSVGElement> {
|
|
3410
|
+
size?: number | string;
|
|
3411
|
+
}
|
|
3412
|
+
/**
|
|
3413
|
+
* MagickoAiAntenna icon component
|
|
3414
|
+
* @example
|
|
3415
|
+
* ```tsx
|
|
3416
|
+
* import { MagickoAiAntenna } from 'magick-icons';
|
|
3417
|
+
*
|
|
3418
|
+
* <MagickoAiAntenna size={24} className="text-blue-500" strokeWidth={2} />
|
|
3419
|
+
* ```
|
|
3420
|
+
*/
|
|
3421
|
+
declare const MagickoAiAntenna: React.ForwardRefExoticComponent<Omit<MagickoAiAntennaProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3422
|
+
|
|
3423
|
+
/**
|
|
3424
|
+
* Props for the MagickoAiAssist icon component
|
|
3425
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3426
|
+
*/
|
|
3427
|
+
interface MagickoAiAssistProps extends React.SVGProps<SVGSVGElement> {
|
|
3428
|
+
size?: number | string;
|
|
3429
|
+
}
|
|
3430
|
+
/**
|
|
3431
|
+
* MagickoAiAssist icon component
|
|
3432
|
+
* @example
|
|
3433
|
+
* ```tsx
|
|
3434
|
+
* import { MagickoAiAssist } from 'magick-icons';
|
|
3435
|
+
*
|
|
3436
|
+
* <MagickoAiAssist size={24} className="text-blue-500" strokeWidth={2} />
|
|
3437
|
+
* ```
|
|
3438
|
+
*/
|
|
3439
|
+
declare const MagickoAiAssist: React.ForwardRefExoticComponent<Omit<MagickoAiAssistProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3440
|
+
|
|
3441
|
+
/**
|
|
3442
|
+
* Props for the MagickoAiAudio icon component
|
|
3443
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3444
|
+
*/
|
|
3445
|
+
interface MagickoAiAudioProps extends React.SVGProps<SVGSVGElement> {
|
|
3446
|
+
size?: number | string;
|
|
3447
|
+
}
|
|
3448
|
+
/**
|
|
3449
|
+
* MagickoAiAudio icon component
|
|
3450
|
+
* @example
|
|
3451
|
+
* ```tsx
|
|
3452
|
+
* import { MagickoAiAudio } from 'magick-icons';
|
|
3453
|
+
*
|
|
3454
|
+
* <MagickoAiAudio size={24} className="text-blue-500" strokeWidth={2} />
|
|
3455
|
+
* ```
|
|
3456
|
+
*/
|
|
3457
|
+
declare const MagickoAiAudio: React.ForwardRefExoticComponent<Omit<MagickoAiAudioProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3458
|
+
|
|
3459
|
+
/**
|
|
3460
|
+
* Props for the MagickoAiChatting icon component
|
|
3461
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3462
|
+
*/
|
|
3463
|
+
interface MagickoAiChattingProps extends React.SVGProps<SVGSVGElement> {
|
|
3464
|
+
size?: number | string;
|
|
3465
|
+
}
|
|
3466
|
+
/**
|
|
3467
|
+
* MagickoAiChatting icon component
|
|
3468
|
+
* @example
|
|
3469
|
+
* ```tsx
|
|
3470
|
+
* import { MagickoAiChatting } from 'magick-icons';
|
|
3471
|
+
*
|
|
3472
|
+
* <MagickoAiChatting size={24} className="text-blue-500" strokeWidth={2} />
|
|
3473
|
+
* ```
|
|
3474
|
+
*/
|
|
3475
|
+
declare const MagickoAiChatting: React.ForwardRefExoticComponent<Omit<MagickoAiChattingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3476
|
+
|
|
3477
|
+
/**
|
|
3478
|
+
* Props for the MagickoAiClipboard icon component
|
|
3479
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3480
|
+
*/
|
|
3481
|
+
interface MagickoAiClipboardProps extends React.SVGProps<SVGSVGElement> {
|
|
3482
|
+
size?: number | string;
|
|
3483
|
+
}
|
|
3484
|
+
/**
|
|
3485
|
+
* MagickoAiClipboard icon component
|
|
3486
|
+
* @example
|
|
3487
|
+
* ```tsx
|
|
3488
|
+
* import { MagickoAiClipboard } from 'magick-icons';
|
|
3489
|
+
*
|
|
3490
|
+
* <MagickoAiClipboard size={24} className="text-blue-500" strokeWidth={2} />
|
|
3491
|
+
* ```
|
|
3492
|
+
*/
|
|
3493
|
+
declare const MagickoAiClipboard: React.ForwardRefExoticComponent<Omit<MagickoAiClipboardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3494
|
+
|
|
3495
|
+
/**
|
|
3496
|
+
* Props for the MagickoAiClock icon component
|
|
3497
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3498
|
+
*/
|
|
3499
|
+
interface MagickoAiClockProps extends React.SVGProps<SVGSVGElement> {
|
|
3500
|
+
size?: number | string;
|
|
3501
|
+
}
|
|
3502
|
+
/**
|
|
3503
|
+
* MagickoAiClock icon component
|
|
3504
|
+
* @example
|
|
3505
|
+
* ```tsx
|
|
3506
|
+
* import { MagickoAiClock } from 'magick-icons';
|
|
3507
|
+
*
|
|
3508
|
+
* <MagickoAiClock size={24} className="text-blue-500" strokeWidth={2} />
|
|
3509
|
+
* ```
|
|
3510
|
+
*/
|
|
3511
|
+
declare const MagickoAiClock: React.ForwardRefExoticComponent<Omit<MagickoAiClockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3512
|
+
|
|
3513
|
+
/**
|
|
3514
|
+
* Props for the MagickoAiCommentary icon component
|
|
3515
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3516
|
+
*/
|
|
3517
|
+
interface MagickoAiCommentaryProps extends React.SVGProps<SVGSVGElement> {
|
|
3518
|
+
size?: number | string;
|
|
3519
|
+
}
|
|
3520
|
+
/**
|
|
3521
|
+
* MagickoAiCommentary icon component
|
|
3522
|
+
* @example
|
|
3523
|
+
* ```tsx
|
|
3524
|
+
* import { MagickoAiCommentary } from 'magick-icons';
|
|
3525
|
+
*
|
|
3526
|
+
* <MagickoAiCommentary size={24} className="text-blue-500" strokeWidth={2} />
|
|
3527
|
+
* ```
|
|
3528
|
+
*/
|
|
3529
|
+
declare const MagickoAiCommentary: React.ForwardRefExoticComponent<Omit<MagickoAiCommentaryProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3530
|
+
|
|
3531
|
+
/**
|
|
3532
|
+
* Props for the MagickoAiCreateDocument icon component
|
|
3533
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3534
|
+
*/
|
|
3535
|
+
interface MagickoAiCreateDocumentProps extends React.SVGProps<SVGSVGElement> {
|
|
3536
|
+
size?: number | string;
|
|
3537
|
+
}
|
|
3538
|
+
/**
|
|
3539
|
+
* MagickoAiCreateDocument icon component
|
|
3540
|
+
* @example
|
|
3541
|
+
* ```tsx
|
|
3542
|
+
* import { MagickoAiCreateDocument } from 'magick-icons';
|
|
3543
|
+
*
|
|
3544
|
+
* <MagickoAiCreateDocument size={24} className="text-blue-500" strokeWidth={2} />
|
|
3545
|
+
* ```
|
|
3546
|
+
*/
|
|
3547
|
+
declare const MagickoAiCreateDocument: React.ForwardRefExoticComponent<Omit<MagickoAiCreateDocumentProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3548
|
+
|
|
3549
|
+
/**
|
|
3550
|
+
* Props for the MagickoAiCreateFile icon component
|
|
3551
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3552
|
+
*/
|
|
3553
|
+
interface MagickoAiCreateFileProps extends React.SVGProps<SVGSVGElement> {
|
|
3554
|
+
size?: number | string;
|
|
3555
|
+
}
|
|
3556
|
+
/**
|
|
3557
|
+
* MagickoAiCreateFile icon component
|
|
3558
|
+
* @example
|
|
3559
|
+
* ```tsx
|
|
3560
|
+
* import { MagickoAiCreateFile } from 'magick-icons';
|
|
3561
|
+
*
|
|
3562
|
+
* <MagickoAiCreateFile size={24} className="text-blue-500" strokeWidth={2} />
|
|
3563
|
+
* ```
|
|
3564
|
+
*/
|
|
3565
|
+
declare const MagickoAiCreateFile: React.ForwardRefExoticComponent<Omit<MagickoAiCreateFileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3566
|
+
|
|
3567
|
+
/**
|
|
3568
|
+
* Props for the MagickoAiCreativity icon component
|
|
3569
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3570
|
+
*/
|
|
3571
|
+
interface MagickoAiCreativityProps extends React.SVGProps<SVGSVGElement> {
|
|
3572
|
+
size?: number | string;
|
|
3573
|
+
}
|
|
3574
|
+
/**
|
|
3575
|
+
* MagickoAiCreativity icon component
|
|
3576
|
+
* @example
|
|
3577
|
+
* ```tsx
|
|
3578
|
+
* import { MagickoAiCreativity } from 'magick-icons';
|
|
3579
|
+
*
|
|
3580
|
+
* <MagickoAiCreativity size={24} className="text-blue-500" strokeWidth={2} />
|
|
3581
|
+
* ```
|
|
3582
|
+
*/
|
|
3583
|
+
declare const MagickoAiCreativity: React.ForwardRefExoticComponent<Omit<MagickoAiCreativityProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3584
|
+
|
|
3585
|
+
/**
|
|
3586
|
+
* Props for the MagickoAiDialogue icon component
|
|
3587
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3588
|
+
*/
|
|
3589
|
+
interface MagickoAiDialogueProps extends React.SVGProps<SVGSVGElement> {
|
|
3590
|
+
size?: number | string;
|
|
3591
|
+
}
|
|
3592
|
+
/**
|
|
3593
|
+
* MagickoAiDialogue icon component
|
|
3594
|
+
* @example
|
|
3595
|
+
* ```tsx
|
|
3596
|
+
* import { MagickoAiDialogue } from 'magick-icons';
|
|
3597
|
+
*
|
|
3598
|
+
* <MagickoAiDialogue size={24} className="text-blue-500" strokeWidth={2} />
|
|
3599
|
+
* ```
|
|
3600
|
+
*/
|
|
3601
|
+
declare const MagickoAiDialogue: React.ForwardRefExoticComponent<Omit<MagickoAiDialogueProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3602
|
+
|
|
3603
|
+
/**
|
|
3604
|
+
* Props for the MagickoAiDirectInbox icon component
|
|
3605
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3606
|
+
*/
|
|
3607
|
+
interface MagickoAiDirectInboxProps extends React.SVGProps<SVGSVGElement> {
|
|
3608
|
+
size?: number | string;
|
|
3609
|
+
}
|
|
3610
|
+
/**
|
|
3611
|
+
* MagickoAiDirectInbox icon component
|
|
3612
|
+
* @example
|
|
3613
|
+
* ```tsx
|
|
3614
|
+
* import { MagickoAiDirectInbox } from 'magick-icons';
|
|
3615
|
+
*
|
|
3616
|
+
* <MagickoAiDirectInbox size={24} className="text-blue-500" strokeWidth={2} />
|
|
3617
|
+
* ```
|
|
3618
|
+
*/
|
|
3619
|
+
declare const MagickoAiDirectInbox: React.ForwardRefExoticComponent<Omit<MagickoAiDirectInboxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3620
|
+
|
|
3621
|
+
/**
|
|
3622
|
+
* Props for the MagickoAiDirectboxReceive icon component
|
|
3623
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3624
|
+
*/
|
|
3625
|
+
interface MagickoAiDirectboxReceiveProps extends React.SVGProps<SVGSVGElement> {
|
|
3626
|
+
size?: number | string;
|
|
3627
|
+
}
|
|
3628
|
+
/**
|
|
3629
|
+
* MagickoAiDirectboxReceive icon component
|
|
3630
|
+
* @example
|
|
3631
|
+
* ```tsx
|
|
3632
|
+
* import { MagickoAiDirectboxReceive } from 'magick-icons';
|
|
3633
|
+
*
|
|
3634
|
+
* <MagickoAiDirectboxReceive size={24} className="text-blue-500" strokeWidth={2} />
|
|
3635
|
+
* ```
|
|
3636
|
+
*/
|
|
3637
|
+
declare const MagickoAiDirectboxReceive: React.ForwardRefExoticComponent<Omit<MagickoAiDirectboxReceiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3638
|
+
|
|
3639
|
+
/**
|
|
3640
|
+
* Props for the MagickoAiDocument icon component
|
|
3641
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3642
|
+
*/
|
|
3643
|
+
interface MagickoAiDocumentProps extends React.SVGProps<SVGSVGElement> {
|
|
3644
|
+
size?: number | string;
|
|
3645
|
+
}
|
|
3646
|
+
/**
|
|
3647
|
+
* MagickoAiDocument icon component
|
|
3648
|
+
* @example
|
|
3649
|
+
* ```tsx
|
|
3650
|
+
* import { MagickoAiDocument } from 'magick-icons';
|
|
3651
|
+
*
|
|
3652
|
+
* <MagickoAiDocument size={24} className="text-blue-500" strokeWidth={2} />
|
|
3653
|
+
* ```
|
|
3654
|
+
*/
|
|
3655
|
+
declare const MagickoAiDocument: React.ForwardRefExoticComponent<Omit<MagickoAiDocumentProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3656
|
+
|
|
3657
|
+
/**
|
|
3658
|
+
* Props for the MagickoAiDocument2 icon component
|
|
3659
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
3660
|
+
*/
|
|
3661
|
+
interface MagickoAiDocument2Props extends React.SVGProps<SVGSVGElement> {
|
|
3662
|
+
size?: number | string;
|
|
3663
|
+
}
|
|
3664
|
+
/**
|
|
3665
|
+
* MagickoAiDocument2 icon component
|
|
3666
|
+
* @example
|
|
3667
|
+
* ```tsx
|
|
3668
|
+
* import { MagickoAiDocument2 } from 'magick-icons';
|
|
3669
|
+
*
|
|
3670
|
+
* <MagickoAiDocument2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
3671
|
+
* ```
|
|
3672
|
+
*/
|
|
3673
|
+
declare const MagickoAiDocument2: React.ForwardRefExoticComponent<Omit<MagickoAiDocument2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3674
|
+
|
|
2901
3675
|
/**
|
|
2902
3676
|
* Props for the MagickoCheck icon component
|
|
2903
3677
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -3204,4 +3978,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3204
3978
|
*/
|
|
3205
3979
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
3206
3980
|
|
|
3207
|
-
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, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, 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 };
|
|
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 };
|