magick-icons 0.1.238 → 0.1.240
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.mts +1081 -1
- package/index.d.ts +1081 -1
- package/index.js +971 -84
- package/index.js.map +1 -1
- package/index.mjs +912 -85
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -12816,6 +12816,24 @@ interface MagickoNextProps extends React.SVGProps<SVGSVGElement> {
|
|
|
12816
12816
|
*/
|
|
12817
12817
|
declare const MagickoNext: React.ForwardRefExoticComponent<Omit<MagickoNextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12818
12818
|
|
|
12819
|
+
/**
|
|
12820
|
+
* Props for the MagickoNote icon component
|
|
12821
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12822
|
+
*/
|
|
12823
|
+
interface MagickoNoteProps extends React.SVGProps<SVGSVGElement> {
|
|
12824
|
+
size?: number | string;
|
|
12825
|
+
}
|
|
12826
|
+
/**
|
|
12827
|
+
* MagickoNote icon component
|
|
12828
|
+
* @example
|
|
12829
|
+
* ```tsx
|
|
12830
|
+
* import { MagickoNote } from 'magick-icons';
|
|
12831
|
+
*
|
|
12832
|
+
* <MagickoNote size={24} className="text-blue-500" strokeWidth={2} />
|
|
12833
|
+
* ```
|
|
12834
|
+
*/
|
|
12835
|
+
declare const MagickoNote: React.ForwardRefExoticComponent<Omit<MagickoNoteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12836
|
+
|
|
12819
12837
|
/**
|
|
12820
12838
|
* Props for the MagickoNote1 icon component
|
|
12821
12839
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -12870,6 +12888,1068 @@ interface MagickoNote2Props extends React.SVGProps<SVGSVGElement> {
|
|
|
12870
12888
|
*/
|
|
12871
12889
|
declare const MagickoNote2: React.ForwardRefExoticComponent<Omit<MagickoNote2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12872
12890
|
|
|
12891
|
+
/**
|
|
12892
|
+
* Props for the MagickoNote21 icon component
|
|
12893
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12894
|
+
*/
|
|
12895
|
+
interface MagickoNote21Props extends React.SVGProps<SVGSVGElement> {
|
|
12896
|
+
size?: number | string;
|
|
12897
|
+
}
|
|
12898
|
+
/**
|
|
12899
|
+
* MagickoNote21 icon component
|
|
12900
|
+
* @example
|
|
12901
|
+
* ```tsx
|
|
12902
|
+
* import { MagickoNote21 } from 'magick-icons';
|
|
12903
|
+
*
|
|
12904
|
+
* <MagickoNote21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12905
|
+
* ```
|
|
12906
|
+
*/
|
|
12907
|
+
declare const MagickoNote21: React.ForwardRefExoticComponent<Omit<MagickoNote21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12908
|
+
|
|
12909
|
+
/**
|
|
12910
|
+
* Props for the MagickoNoteAdd icon component
|
|
12911
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12912
|
+
*/
|
|
12913
|
+
interface MagickoNoteAddProps extends React.SVGProps<SVGSVGElement> {
|
|
12914
|
+
size?: number | string;
|
|
12915
|
+
}
|
|
12916
|
+
/**
|
|
12917
|
+
* MagickoNoteAdd icon component
|
|
12918
|
+
* @example
|
|
12919
|
+
* ```tsx
|
|
12920
|
+
* import { MagickoNoteAdd } from 'magick-icons';
|
|
12921
|
+
*
|
|
12922
|
+
* <MagickoNoteAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
12923
|
+
* ```
|
|
12924
|
+
*/
|
|
12925
|
+
declare const MagickoNoteAdd: React.ForwardRefExoticComponent<Omit<MagickoNoteAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12926
|
+
|
|
12927
|
+
/**
|
|
12928
|
+
* Props for the MagickoNoteFavorite icon component
|
|
12929
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12930
|
+
*/
|
|
12931
|
+
interface MagickoNoteFavoriteProps extends React.SVGProps<SVGSVGElement> {
|
|
12932
|
+
size?: number | string;
|
|
12933
|
+
}
|
|
12934
|
+
/**
|
|
12935
|
+
* MagickoNoteFavorite icon component
|
|
12936
|
+
* @example
|
|
12937
|
+
* ```tsx
|
|
12938
|
+
* import { MagickoNoteFavorite } from 'magick-icons';
|
|
12939
|
+
*
|
|
12940
|
+
* <MagickoNoteFavorite size={24} className="text-blue-500" strokeWidth={2} />
|
|
12941
|
+
* ```
|
|
12942
|
+
*/
|
|
12943
|
+
declare const MagickoNoteFavorite: React.ForwardRefExoticComponent<Omit<MagickoNoteFavoriteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12944
|
+
|
|
12945
|
+
/**
|
|
12946
|
+
* Props for the MagickoNoteRemove icon component
|
|
12947
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12948
|
+
*/
|
|
12949
|
+
interface MagickoNoteRemoveProps extends React.SVGProps<SVGSVGElement> {
|
|
12950
|
+
size?: number | string;
|
|
12951
|
+
}
|
|
12952
|
+
/**
|
|
12953
|
+
* MagickoNoteRemove icon component
|
|
12954
|
+
* @example
|
|
12955
|
+
* ```tsx
|
|
12956
|
+
* import { MagickoNoteRemove } from 'magick-icons';
|
|
12957
|
+
*
|
|
12958
|
+
* <MagickoNoteRemove size={24} className="text-blue-500" strokeWidth={2} />
|
|
12959
|
+
* ```
|
|
12960
|
+
*/
|
|
12961
|
+
declare const MagickoNoteRemove: React.ForwardRefExoticComponent<Omit<MagickoNoteRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12962
|
+
|
|
12963
|
+
/**
|
|
12964
|
+
* Props for the MagickoNoteText icon component
|
|
12965
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12966
|
+
*/
|
|
12967
|
+
interface MagickoNoteTextProps extends React.SVGProps<SVGSVGElement> {
|
|
12968
|
+
size?: number | string;
|
|
12969
|
+
}
|
|
12970
|
+
/**
|
|
12971
|
+
* MagickoNoteText icon component
|
|
12972
|
+
* @example
|
|
12973
|
+
* ```tsx
|
|
12974
|
+
* import { MagickoNoteText } from 'magick-icons';
|
|
12975
|
+
*
|
|
12976
|
+
* <MagickoNoteText size={24} className="text-blue-500" strokeWidth={2} />
|
|
12977
|
+
* ```
|
|
12978
|
+
*/
|
|
12979
|
+
declare const MagickoNoteText: React.ForwardRefExoticComponent<Omit<MagickoNoteTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12980
|
+
|
|
12981
|
+
/**
|
|
12982
|
+
* Props for the MagickoNotification icon component
|
|
12983
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12984
|
+
*/
|
|
12985
|
+
interface MagickoNotificationProps extends React.SVGProps<SVGSVGElement> {
|
|
12986
|
+
size?: number | string;
|
|
12987
|
+
}
|
|
12988
|
+
/**
|
|
12989
|
+
* MagickoNotification icon component
|
|
12990
|
+
* @example
|
|
12991
|
+
* ```tsx
|
|
12992
|
+
* import { MagickoNotification } from 'magick-icons';
|
|
12993
|
+
*
|
|
12994
|
+
* <MagickoNotification size={24} className="text-blue-500" strokeWidth={2} />
|
|
12995
|
+
* ```
|
|
12996
|
+
*/
|
|
12997
|
+
declare const MagickoNotification: React.ForwardRefExoticComponent<Omit<MagickoNotificationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12998
|
+
|
|
12999
|
+
/**
|
|
13000
|
+
* Props for the MagickoNotification2 icon component
|
|
13001
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13002
|
+
*/
|
|
13003
|
+
interface MagickoNotification2Props extends React.SVGProps<SVGSVGElement> {
|
|
13004
|
+
size?: number | string;
|
|
13005
|
+
}
|
|
13006
|
+
/**
|
|
13007
|
+
* MagickoNotification2 icon component
|
|
13008
|
+
* @example
|
|
13009
|
+
* ```tsx
|
|
13010
|
+
* import { MagickoNotification2 } from 'magick-icons';
|
|
13011
|
+
*
|
|
13012
|
+
* <MagickoNotification2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13013
|
+
* ```
|
|
13014
|
+
*/
|
|
13015
|
+
declare const MagickoNotification2: React.ForwardRefExoticComponent<Omit<MagickoNotification2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13016
|
+
|
|
13017
|
+
/**
|
|
13018
|
+
* Props for the MagickoNotificationBing icon component
|
|
13019
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13020
|
+
*/
|
|
13021
|
+
interface MagickoNotificationBingProps extends React.SVGProps<SVGSVGElement> {
|
|
13022
|
+
size?: number | string;
|
|
13023
|
+
}
|
|
13024
|
+
/**
|
|
13025
|
+
* MagickoNotificationBing icon component
|
|
13026
|
+
* @example
|
|
13027
|
+
* ```tsx
|
|
13028
|
+
* import { MagickoNotificationBing } from 'magick-icons';
|
|
13029
|
+
*
|
|
13030
|
+
* <MagickoNotificationBing size={24} className="text-blue-500" strokeWidth={2} />
|
|
13031
|
+
* ```
|
|
13032
|
+
*/
|
|
13033
|
+
declare const MagickoNotificationBing: React.ForwardRefExoticComponent<Omit<MagickoNotificationBingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13034
|
+
|
|
13035
|
+
/**
|
|
13036
|
+
* Props for the MagickoNotificationCircle icon component
|
|
13037
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13038
|
+
*/
|
|
13039
|
+
interface MagickoNotificationCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
13040
|
+
size?: number | string;
|
|
13041
|
+
}
|
|
13042
|
+
/**
|
|
13043
|
+
* MagickoNotificationCircle icon component
|
|
13044
|
+
* @example
|
|
13045
|
+
* ```tsx
|
|
13046
|
+
* import { MagickoNotificationCircle } from 'magick-icons';
|
|
13047
|
+
*
|
|
13048
|
+
* <MagickoNotificationCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
13049
|
+
* ```
|
|
13050
|
+
*/
|
|
13051
|
+
declare const MagickoNotificationCircle: React.ForwardRefExoticComponent<Omit<MagickoNotificationCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13052
|
+
|
|
13053
|
+
/**
|
|
13054
|
+
* Props for the MagickoOak icon component
|
|
13055
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13056
|
+
*/
|
|
13057
|
+
interface MagickoOakProps extends React.SVGProps<SVGSVGElement> {
|
|
13058
|
+
size?: number | string;
|
|
13059
|
+
}
|
|
13060
|
+
/**
|
|
13061
|
+
* MagickoOak icon component
|
|
13062
|
+
* @example
|
|
13063
|
+
* ```tsx
|
|
13064
|
+
* import { MagickoOak } from 'magick-icons';
|
|
13065
|
+
*
|
|
13066
|
+
* <MagickoOak size={24} className="text-blue-500" strokeWidth={2} />
|
|
13067
|
+
* ```
|
|
13068
|
+
*/
|
|
13069
|
+
declare const MagickoOak: React.ForwardRefExoticComponent<Omit<MagickoOakProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13070
|
+
|
|
13071
|
+
/**
|
|
13072
|
+
* Props for the MagickoPadlock icon component
|
|
13073
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13074
|
+
*/
|
|
13075
|
+
interface MagickoPadlockProps extends React.SVGProps<SVGSVGElement> {
|
|
13076
|
+
size?: number | string;
|
|
13077
|
+
}
|
|
13078
|
+
/**
|
|
13079
|
+
* MagickoPadlock icon component
|
|
13080
|
+
* @example
|
|
13081
|
+
* ```tsx
|
|
13082
|
+
* import { MagickoPadlock } from 'magick-icons';
|
|
13083
|
+
*
|
|
13084
|
+
* <MagickoPadlock size={24} className="text-blue-500" strokeWidth={2} />
|
|
13085
|
+
* ```
|
|
13086
|
+
*/
|
|
13087
|
+
declare const MagickoPadlock: React.ForwardRefExoticComponent<Omit<MagickoPadlockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13088
|
+
|
|
13089
|
+
/**
|
|
13090
|
+
* Props for the MagickoPaintBrush2 icon component
|
|
13091
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13092
|
+
*/
|
|
13093
|
+
interface MagickoPaintBrush2Props extends React.SVGProps<SVGSVGElement> {
|
|
13094
|
+
size?: number | string;
|
|
13095
|
+
}
|
|
13096
|
+
/**
|
|
13097
|
+
* MagickoPaintBrush2 icon component
|
|
13098
|
+
* @example
|
|
13099
|
+
* ```tsx
|
|
13100
|
+
* import { MagickoPaintBrush2 } from 'magick-icons';
|
|
13101
|
+
*
|
|
13102
|
+
* <MagickoPaintBrush2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13103
|
+
* ```
|
|
13104
|
+
*/
|
|
13105
|
+
declare const MagickoPaintBrush2: React.ForwardRefExoticComponent<Omit<MagickoPaintBrush2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13106
|
+
|
|
13107
|
+
/**
|
|
13108
|
+
* Props for the MagickoPaintRoller icon component
|
|
13109
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13110
|
+
*/
|
|
13111
|
+
interface MagickoPaintRollerProps extends React.SVGProps<SVGSVGElement> {
|
|
13112
|
+
size?: number | string;
|
|
13113
|
+
}
|
|
13114
|
+
/**
|
|
13115
|
+
* MagickoPaintRoller icon component
|
|
13116
|
+
* @example
|
|
13117
|
+
* ```tsx
|
|
13118
|
+
* import { MagickoPaintRoller } from 'magick-icons';
|
|
13119
|
+
*
|
|
13120
|
+
* <MagickoPaintRoller size={24} className="text-blue-500" strokeWidth={2} />
|
|
13121
|
+
* ```
|
|
13122
|
+
*/
|
|
13123
|
+
declare const MagickoPaintRoller: React.ForwardRefExoticComponent<Omit<MagickoPaintRollerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13124
|
+
|
|
13125
|
+
/**
|
|
13126
|
+
* Props for the MagickoPaintbucket icon component
|
|
13127
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13128
|
+
*/
|
|
13129
|
+
interface MagickoPaintbucketProps extends React.SVGProps<SVGSVGElement> {
|
|
13130
|
+
size?: number | string;
|
|
13131
|
+
}
|
|
13132
|
+
/**
|
|
13133
|
+
* MagickoPaintbucket icon component
|
|
13134
|
+
* @example
|
|
13135
|
+
* ```tsx
|
|
13136
|
+
* import { MagickoPaintbucket } from 'magick-icons';
|
|
13137
|
+
*
|
|
13138
|
+
* <MagickoPaintbucket size={24} className="text-blue-500" strokeWidth={2} />
|
|
13139
|
+
* ```
|
|
13140
|
+
*/
|
|
13141
|
+
declare const MagickoPaintbucket: React.ForwardRefExoticComponent<Omit<MagickoPaintbucketProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13142
|
+
|
|
13143
|
+
/**
|
|
13144
|
+
* Props for the MagickoPaperclip icon component
|
|
13145
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13146
|
+
*/
|
|
13147
|
+
interface MagickoPaperclipProps extends React.SVGProps<SVGSVGElement> {
|
|
13148
|
+
size?: number | string;
|
|
13149
|
+
}
|
|
13150
|
+
/**
|
|
13151
|
+
* MagickoPaperclip icon component
|
|
13152
|
+
* @example
|
|
13153
|
+
* ```tsx
|
|
13154
|
+
* import { MagickoPaperclip } from 'magick-icons';
|
|
13155
|
+
*
|
|
13156
|
+
* <MagickoPaperclip size={24} className="text-blue-500" strokeWidth={2} />
|
|
13157
|
+
* ```
|
|
13158
|
+
*/
|
|
13159
|
+
declare const MagickoPaperclip: React.ForwardRefExoticComponent<Omit<MagickoPaperclipProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13160
|
+
|
|
13161
|
+
/**
|
|
13162
|
+
* Props for the MagickoPaperclip2 icon component
|
|
13163
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13164
|
+
*/
|
|
13165
|
+
interface MagickoPaperclip2Props extends React.SVGProps<SVGSVGElement> {
|
|
13166
|
+
size?: number | string;
|
|
13167
|
+
}
|
|
13168
|
+
/**
|
|
13169
|
+
* MagickoPaperclip2 icon component
|
|
13170
|
+
* @example
|
|
13171
|
+
* ```tsx
|
|
13172
|
+
* import { MagickoPaperclip2 } from 'magick-icons';
|
|
13173
|
+
*
|
|
13174
|
+
* <MagickoPaperclip2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13175
|
+
* ```
|
|
13176
|
+
*/
|
|
13177
|
+
declare const MagickoPaperclip2: React.ForwardRefExoticComponent<Omit<MagickoPaperclip2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13178
|
+
|
|
13179
|
+
/**
|
|
13180
|
+
* Props for the MagickoParagraphspacing icon component
|
|
13181
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13182
|
+
*/
|
|
13183
|
+
interface MagickoParagraphspacingProps extends React.SVGProps<SVGSVGElement> {
|
|
13184
|
+
size?: number | string;
|
|
13185
|
+
}
|
|
13186
|
+
/**
|
|
13187
|
+
* MagickoParagraphspacing icon component
|
|
13188
|
+
* @example
|
|
13189
|
+
* ```tsx
|
|
13190
|
+
* import { MagickoParagraphspacing } from 'magick-icons';
|
|
13191
|
+
*
|
|
13192
|
+
* <MagickoParagraphspacing size={24} className="text-blue-500" strokeWidth={2} />
|
|
13193
|
+
* ```
|
|
13194
|
+
*/
|
|
13195
|
+
declare const MagickoParagraphspacing: React.ForwardRefExoticComponent<Omit<MagickoParagraphspacingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13196
|
+
|
|
13197
|
+
/**
|
|
13198
|
+
* Props for the MagickoPartlycloudy icon component
|
|
13199
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13200
|
+
*/
|
|
13201
|
+
interface MagickoPartlycloudyProps extends React.SVGProps<SVGSVGElement> {
|
|
13202
|
+
size?: number | string;
|
|
13203
|
+
}
|
|
13204
|
+
/**
|
|
13205
|
+
* MagickoPartlycloudy icon component
|
|
13206
|
+
* @example
|
|
13207
|
+
* ```tsx
|
|
13208
|
+
* import { MagickoPartlycloudy } from 'magick-icons';
|
|
13209
|
+
*
|
|
13210
|
+
* <MagickoPartlycloudy size={24} className="text-blue-500" strokeWidth={2} />
|
|
13211
|
+
* ```
|
|
13212
|
+
*/
|
|
13213
|
+
declare const MagickoPartlycloudy: React.ForwardRefExoticComponent<Omit<MagickoPartlycloudyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13214
|
+
|
|
13215
|
+
/**
|
|
13216
|
+
* Props for the MagickoPause icon component
|
|
13217
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13218
|
+
*/
|
|
13219
|
+
interface MagickoPauseProps extends React.SVGProps<SVGSVGElement> {
|
|
13220
|
+
size?: number | string;
|
|
13221
|
+
}
|
|
13222
|
+
/**
|
|
13223
|
+
* MagickoPause icon component
|
|
13224
|
+
* @example
|
|
13225
|
+
* ```tsx
|
|
13226
|
+
* import { MagickoPause } from 'magick-icons';
|
|
13227
|
+
*
|
|
13228
|
+
* <MagickoPause size={24} className="text-blue-500" strokeWidth={2} />
|
|
13229
|
+
* ```
|
|
13230
|
+
*/
|
|
13231
|
+
declare const MagickoPause: React.ForwardRefExoticComponent<Omit<MagickoPauseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13232
|
+
|
|
13233
|
+
/**
|
|
13234
|
+
* Props for the MagickoPeople icon component
|
|
13235
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13236
|
+
*/
|
|
13237
|
+
interface MagickoPeopleProps extends React.SVGProps<SVGSVGElement> {
|
|
13238
|
+
size?: number | string;
|
|
13239
|
+
}
|
|
13240
|
+
/**
|
|
13241
|
+
* MagickoPeople icon component
|
|
13242
|
+
* @example
|
|
13243
|
+
* ```tsx
|
|
13244
|
+
* import { MagickoPeople } from 'magick-icons';
|
|
13245
|
+
*
|
|
13246
|
+
* <MagickoPeople size={24} className="text-blue-500" strokeWidth={2} />
|
|
13247
|
+
* ```
|
|
13248
|
+
*/
|
|
13249
|
+
declare const MagickoPeople: React.ForwardRefExoticComponent<Omit<MagickoPeopleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13250
|
+
|
|
13251
|
+
/**
|
|
13252
|
+
* Props for the MagickoPercentageCircle icon component
|
|
13253
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13254
|
+
*/
|
|
13255
|
+
interface MagickoPercentageCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
13256
|
+
size?: number | string;
|
|
13257
|
+
}
|
|
13258
|
+
/**
|
|
13259
|
+
* MagickoPercentageCircle icon component
|
|
13260
|
+
* @example
|
|
13261
|
+
* ```tsx
|
|
13262
|
+
* import { MagickoPercentageCircle } from 'magick-icons';
|
|
13263
|
+
*
|
|
13264
|
+
* <MagickoPercentageCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
13265
|
+
* ```
|
|
13266
|
+
*/
|
|
13267
|
+
declare const MagickoPercentageCircle: React.ForwardRefExoticComponent<Omit<MagickoPercentageCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13268
|
+
|
|
13269
|
+
/**
|
|
13270
|
+
* Props for the MagickoPercentageSquare icon component
|
|
13271
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13272
|
+
*/
|
|
13273
|
+
interface MagickoPercentageSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
13274
|
+
size?: number | string;
|
|
13275
|
+
}
|
|
13276
|
+
/**
|
|
13277
|
+
* MagickoPercentageSquare icon component
|
|
13278
|
+
* @example
|
|
13279
|
+
* ```tsx
|
|
13280
|
+
* import { MagickoPercentageSquare } from 'magick-icons';
|
|
13281
|
+
*
|
|
13282
|
+
* <MagickoPercentageSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
13283
|
+
* ```
|
|
13284
|
+
*/
|
|
13285
|
+
declare const MagickoPercentageSquare: React.ForwardRefExoticComponent<Omit<MagickoPercentageSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13286
|
+
|
|
13287
|
+
/**
|
|
13288
|
+
* Props for the MagickoPersonalcard icon component
|
|
13289
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13290
|
+
*/
|
|
13291
|
+
interface MagickoPersonalcardProps extends React.SVGProps<SVGSVGElement> {
|
|
13292
|
+
size?: number | string;
|
|
13293
|
+
}
|
|
13294
|
+
/**
|
|
13295
|
+
* MagickoPersonalcard icon component
|
|
13296
|
+
* @example
|
|
13297
|
+
* ```tsx
|
|
13298
|
+
* import { MagickoPersonalcard } from 'magick-icons';
|
|
13299
|
+
*
|
|
13300
|
+
* <MagickoPersonalcard size={24} className="text-blue-500" strokeWidth={2} />
|
|
13301
|
+
* ```
|
|
13302
|
+
*/
|
|
13303
|
+
declare const MagickoPersonalcard: React.ForwardRefExoticComponent<Omit<MagickoPersonalcardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13304
|
+
|
|
13305
|
+
/**
|
|
13306
|
+
* Props for the MagickoPlay icon component
|
|
13307
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13308
|
+
*/
|
|
13309
|
+
interface MagickoPlayProps extends React.SVGProps<SVGSVGElement> {
|
|
13310
|
+
size?: number | string;
|
|
13311
|
+
}
|
|
13312
|
+
/**
|
|
13313
|
+
* MagickoPlay icon component
|
|
13314
|
+
* @example
|
|
13315
|
+
* ```tsx
|
|
13316
|
+
* import { MagickoPlay } from 'magick-icons';
|
|
13317
|
+
*
|
|
13318
|
+
* <MagickoPlay size={24} className="text-blue-500" strokeWidth={2} />
|
|
13319
|
+
* ```
|
|
13320
|
+
*/
|
|
13321
|
+
declare const MagickoPlay: React.ForwardRefExoticComponent<Omit<MagickoPlayProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13322
|
+
|
|
13323
|
+
/**
|
|
13324
|
+
* Props for the MagickoPlayfinger icon component
|
|
13325
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13326
|
+
*/
|
|
13327
|
+
interface MagickoPlayfingerProps extends React.SVGProps<SVGSVGElement> {
|
|
13328
|
+
size?: number | string;
|
|
13329
|
+
}
|
|
13330
|
+
/**
|
|
13331
|
+
* MagickoPlayfinger icon component
|
|
13332
|
+
* @example
|
|
13333
|
+
* ```tsx
|
|
13334
|
+
* import { MagickoPlayfinger } from 'magick-icons';
|
|
13335
|
+
*
|
|
13336
|
+
* <MagickoPlayfinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
13337
|
+
* ```
|
|
13338
|
+
*/
|
|
13339
|
+
declare const MagickoPlayfinger: React.ForwardRefExoticComponent<Omit<MagickoPlayfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13340
|
+
|
|
13341
|
+
/**
|
|
13342
|
+
* Props for the MagickoPoint icon component
|
|
13343
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13344
|
+
*/
|
|
13345
|
+
interface MagickoPointProps extends React.SVGProps<SVGSVGElement> {
|
|
13346
|
+
size?: number | string;
|
|
13347
|
+
}
|
|
13348
|
+
/**
|
|
13349
|
+
* MagickoPoint icon component
|
|
13350
|
+
* @example
|
|
13351
|
+
* ```tsx
|
|
13352
|
+
* import { MagickoPoint } from 'magick-icons';
|
|
13353
|
+
*
|
|
13354
|
+
* <MagickoPoint size={24} className="text-blue-500" strokeWidth={2} />
|
|
13355
|
+
* ```
|
|
13356
|
+
*/
|
|
13357
|
+
declare const MagickoPoint: React.ForwardRefExoticComponent<Omit<MagickoPointProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13358
|
+
|
|
13359
|
+
/**
|
|
13360
|
+
* Props for the MagickoPointfinger icon component
|
|
13361
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13362
|
+
*/
|
|
13363
|
+
interface MagickoPointfingerProps extends React.SVGProps<SVGSVGElement> {
|
|
13364
|
+
size?: number | string;
|
|
13365
|
+
}
|
|
13366
|
+
/**
|
|
13367
|
+
* MagickoPointfinger icon component
|
|
13368
|
+
* @example
|
|
13369
|
+
* ```tsx
|
|
13370
|
+
* import { MagickoPointfinger } from 'magick-icons';
|
|
13371
|
+
*
|
|
13372
|
+
* <MagickoPointfinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
13373
|
+
* ```
|
|
13374
|
+
*/
|
|
13375
|
+
declare const MagickoPointfinger: React.ForwardRefExoticComponent<Omit<MagickoPointfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13376
|
+
|
|
13377
|
+
/**
|
|
13378
|
+
* Props for the MagickoPresentationChart icon component
|
|
13379
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13380
|
+
*/
|
|
13381
|
+
interface MagickoPresentationChartProps extends React.SVGProps<SVGSVGElement> {
|
|
13382
|
+
size?: number | string;
|
|
13383
|
+
}
|
|
13384
|
+
/**
|
|
13385
|
+
* MagickoPresentationChart icon component
|
|
13386
|
+
* @example
|
|
13387
|
+
* ```tsx
|
|
13388
|
+
* import { MagickoPresentationChart } from 'magick-icons';
|
|
13389
|
+
*
|
|
13390
|
+
* <MagickoPresentationChart size={24} className="text-blue-500" strokeWidth={2} />
|
|
13391
|
+
* ```
|
|
13392
|
+
*/
|
|
13393
|
+
declare const MagickoPresentationChart: React.ForwardRefExoticComponent<Omit<MagickoPresentationChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13394
|
+
|
|
13395
|
+
/**
|
|
13396
|
+
* Props for the MagickoPrevious icon component
|
|
13397
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13398
|
+
*/
|
|
13399
|
+
interface MagickoPreviousProps extends React.SVGProps<SVGSVGElement> {
|
|
13400
|
+
size?: number | string;
|
|
13401
|
+
}
|
|
13402
|
+
/**
|
|
13403
|
+
* MagickoPrevious icon component
|
|
13404
|
+
* @example
|
|
13405
|
+
* ```tsx
|
|
13406
|
+
* import { MagickoPrevious } from 'magick-icons';
|
|
13407
|
+
*
|
|
13408
|
+
* <MagickoPrevious size={24} className="text-blue-500" strokeWidth={2} />
|
|
13409
|
+
* ```
|
|
13410
|
+
*/
|
|
13411
|
+
declare const MagickoPrevious: React.ForwardRefExoticComponent<Omit<MagickoPreviousProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13412
|
+
|
|
13413
|
+
/**
|
|
13414
|
+
* Props for the MagickoPrinter icon component
|
|
13415
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13416
|
+
*/
|
|
13417
|
+
interface MagickoPrinterProps extends React.SVGProps<SVGSVGElement> {
|
|
13418
|
+
size?: number | string;
|
|
13419
|
+
}
|
|
13420
|
+
/**
|
|
13421
|
+
* MagickoPrinter icon component
|
|
13422
|
+
* @example
|
|
13423
|
+
* ```tsx
|
|
13424
|
+
* import { MagickoPrinter } from 'magick-icons';
|
|
13425
|
+
*
|
|
13426
|
+
* <MagickoPrinter size={24} className="text-blue-500" strokeWidth={2} />
|
|
13427
|
+
* ```
|
|
13428
|
+
*/
|
|
13429
|
+
declare const MagickoPrinter: React.ForwardRefExoticComponent<Omit<MagickoPrinterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13430
|
+
|
|
13431
|
+
/**
|
|
13432
|
+
* Props for the MagickoPrinter1 icon component
|
|
13433
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13434
|
+
*/
|
|
13435
|
+
interface MagickoPrinter1Props extends React.SVGProps<SVGSVGElement> {
|
|
13436
|
+
size?: number | string;
|
|
13437
|
+
}
|
|
13438
|
+
/**
|
|
13439
|
+
* MagickoPrinter1 icon component
|
|
13440
|
+
* @example
|
|
13441
|
+
* ```tsx
|
|
13442
|
+
* import { MagickoPrinter1 } from 'magick-icons';
|
|
13443
|
+
*
|
|
13444
|
+
* <MagickoPrinter1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13445
|
+
* ```
|
|
13446
|
+
*/
|
|
13447
|
+
declare const MagickoPrinter1: React.ForwardRefExoticComponent<Omit<MagickoPrinter1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13448
|
+
|
|
13449
|
+
/**
|
|
13450
|
+
* Props for the MagickoPrinterSlash icon component
|
|
13451
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13452
|
+
*/
|
|
13453
|
+
interface MagickoPrinterSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
13454
|
+
size?: number | string;
|
|
13455
|
+
}
|
|
13456
|
+
/**
|
|
13457
|
+
* MagickoPrinterSlash icon component
|
|
13458
|
+
* @example
|
|
13459
|
+
* ```tsx
|
|
13460
|
+
* import { MagickoPrinterSlash } from 'magick-icons';
|
|
13461
|
+
*
|
|
13462
|
+
* <MagickoPrinterSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
13463
|
+
* ```
|
|
13464
|
+
*/
|
|
13465
|
+
declare const MagickoPrinterSlash: React.ForwardRefExoticComponent<Omit<MagickoPrinterSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13466
|
+
|
|
13467
|
+
/**
|
|
13468
|
+
* Props for the MagickoProfile icon component
|
|
13469
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13470
|
+
*/
|
|
13471
|
+
interface MagickoProfileProps extends React.SVGProps<SVGSVGElement> {
|
|
13472
|
+
size?: number | string;
|
|
13473
|
+
}
|
|
13474
|
+
/**
|
|
13475
|
+
* MagickoProfile icon component
|
|
13476
|
+
* @example
|
|
13477
|
+
* ```tsx
|
|
13478
|
+
* import { MagickoProfile } from 'magick-icons';
|
|
13479
|
+
*
|
|
13480
|
+
* <MagickoProfile size={24} className="text-blue-500" strokeWidth={2} />
|
|
13481
|
+
* ```
|
|
13482
|
+
*/
|
|
13483
|
+
declare const MagickoProfile: React.ForwardRefExoticComponent<Omit<MagickoProfileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13484
|
+
|
|
13485
|
+
/**
|
|
13486
|
+
* Props for the MagickoProfile1 icon component
|
|
13487
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13488
|
+
*/
|
|
13489
|
+
interface MagickoProfile1Props extends React.SVGProps<SVGSVGElement> {
|
|
13490
|
+
size?: number | string;
|
|
13491
|
+
}
|
|
13492
|
+
/**
|
|
13493
|
+
* MagickoProfile1 icon component
|
|
13494
|
+
* @example
|
|
13495
|
+
* ```tsx
|
|
13496
|
+
* import { MagickoProfile1 } from 'magick-icons';
|
|
13497
|
+
*
|
|
13498
|
+
* <MagickoProfile1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13499
|
+
* ```
|
|
13500
|
+
*/
|
|
13501
|
+
declare const MagickoProfile1: React.ForwardRefExoticComponent<Omit<MagickoProfile1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13502
|
+
|
|
13503
|
+
/**
|
|
13504
|
+
* Props for the MagickoProfile2user icon component
|
|
13505
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13506
|
+
*/
|
|
13507
|
+
interface MagickoProfile2userProps extends React.SVGProps<SVGSVGElement> {
|
|
13508
|
+
size?: number | string;
|
|
13509
|
+
}
|
|
13510
|
+
/**
|
|
13511
|
+
* MagickoProfile2user icon component
|
|
13512
|
+
* @example
|
|
13513
|
+
* ```tsx
|
|
13514
|
+
* import { MagickoProfile2user } from 'magick-icons';
|
|
13515
|
+
*
|
|
13516
|
+
* <MagickoProfile2user size={24} className="text-blue-500" strokeWidth={2} />
|
|
13517
|
+
* ```
|
|
13518
|
+
*/
|
|
13519
|
+
declare const MagickoProfile2user: React.ForwardRefExoticComponent<Omit<MagickoProfile2userProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13520
|
+
|
|
13521
|
+
/**
|
|
13522
|
+
* Props for the MagickoProfileAdd icon component
|
|
13523
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13524
|
+
*/
|
|
13525
|
+
interface MagickoProfileAddProps extends React.SVGProps<SVGSVGElement> {
|
|
13526
|
+
size?: number | string;
|
|
13527
|
+
}
|
|
13528
|
+
/**
|
|
13529
|
+
* MagickoProfileAdd icon component
|
|
13530
|
+
* @example
|
|
13531
|
+
* ```tsx
|
|
13532
|
+
* import { MagickoProfileAdd } from 'magick-icons';
|
|
13533
|
+
*
|
|
13534
|
+
* <MagickoProfileAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
13535
|
+
* ```
|
|
13536
|
+
*/
|
|
13537
|
+
declare const MagickoProfileAdd: React.ForwardRefExoticComponent<Omit<MagickoProfileAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13538
|
+
|
|
13539
|
+
/**
|
|
13540
|
+
* Props for the MagickoProfileCircle icon component
|
|
13541
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13542
|
+
*/
|
|
13543
|
+
interface MagickoProfileCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
13544
|
+
size?: number | string;
|
|
13545
|
+
}
|
|
13546
|
+
/**
|
|
13547
|
+
* MagickoProfileCircle icon component
|
|
13548
|
+
* @example
|
|
13549
|
+
* ```tsx
|
|
13550
|
+
* import { MagickoProfileCircle } from 'magick-icons';
|
|
13551
|
+
*
|
|
13552
|
+
* <MagickoProfileCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
13553
|
+
* ```
|
|
13554
|
+
*/
|
|
13555
|
+
declare const MagickoProfileCircle: React.ForwardRefExoticComponent<Omit<MagickoProfileCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13556
|
+
|
|
13557
|
+
/**
|
|
13558
|
+
* Props for the MagickoProfileDelete icon component
|
|
13559
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13560
|
+
*/
|
|
13561
|
+
interface MagickoProfileDeleteProps extends React.SVGProps<SVGSVGElement> {
|
|
13562
|
+
size?: number | string;
|
|
13563
|
+
}
|
|
13564
|
+
/**
|
|
13565
|
+
* MagickoProfileDelete icon component
|
|
13566
|
+
* @example
|
|
13567
|
+
* ```tsx
|
|
13568
|
+
* import { MagickoProfileDelete } from 'magick-icons';
|
|
13569
|
+
*
|
|
13570
|
+
* <MagickoProfileDelete size={24} className="text-blue-500" strokeWidth={2} />
|
|
13571
|
+
* ```
|
|
13572
|
+
*/
|
|
13573
|
+
declare const MagickoProfileDelete: React.ForwardRefExoticComponent<Omit<MagickoProfileDeleteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13574
|
+
|
|
13575
|
+
/**
|
|
13576
|
+
* Props for the MagickoProfileRemove icon component
|
|
13577
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13578
|
+
*/
|
|
13579
|
+
interface MagickoProfileRemoveProps extends React.SVGProps<SVGSVGElement> {
|
|
13580
|
+
size?: number | string;
|
|
13581
|
+
}
|
|
13582
|
+
/**
|
|
13583
|
+
* MagickoProfileRemove icon component
|
|
13584
|
+
* @example
|
|
13585
|
+
* ```tsx
|
|
13586
|
+
* import { MagickoProfileRemove } from 'magick-icons';
|
|
13587
|
+
*
|
|
13588
|
+
* <MagickoProfileRemove size={24} className="text-blue-500" strokeWidth={2} />
|
|
13589
|
+
* ```
|
|
13590
|
+
*/
|
|
13591
|
+
declare const MagickoProfileRemove: React.ForwardRefExoticComponent<Omit<MagickoProfileRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13592
|
+
|
|
13593
|
+
/**
|
|
13594
|
+
* Props for the MagickoProfileTick icon component
|
|
13595
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13596
|
+
*/
|
|
13597
|
+
interface MagickoProfileTickProps extends React.SVGProps<SVGSVGElement> {
|
|
13598
|
+
size?: number | string;
|
|
13599
|
+
}
|
|
13600
|
+
/**
|
|
13601
|
+
* MagickoProfileTick icon component
|
|
13602
|
+
* @example
|
|
13603
|
+
* ```tsx
|
|
13604
|
+
* import { MagickoProfileTick } from 'magick-icons';
|
|
13605
|
+
*
|
|
13606
|
+
* <MagickoProfileTick size={24} className="text-blue-500" strokeWidth={2} />
|
|
13607
|
+
* ```
|
|
13608
|
+
*/
|
|
13609
|
+
declare const MagickoProfileTick: React.ForwardRefExoticComponent<Omit<MagickoProfileTickProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13610
|
+
|
|
13611
|
+
/**
|
|
13612
|
+
* Props for the MagickoProtectfinger icon component
|
|
13613
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13614
|
+
*/
|
|
13615
|
+
interface MagickoProtectfingerProps extends React.SVGProps<SVGSVGElement> {
|
|
13616
|
+
size?: number | string;
|
|
13617
|
+
}
|
|
13618
|
+
/**
|
|
13619
|
+
* MagickoProtectfinger icon component
|
|
13620
|
+
* @example
|
|
13621
|
+
* ```tsx
|
|
13622
|
+
* import { MagickoProtectfinger } from 'magick-icons';
|
|
13623
|
+
*
|
|
13624
|
+
* <MagickoProtectfinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
13625
|
+
* ```
|
|
13626
|
+
*/
|
|
13627
|
+
declare const MagickoProtectfinger: React.ForwardRefExoticComponent<Omit<MagickoProtectfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13628
|
+
|
|
13629
|
+
/**
|
|
13630
|
+
* Props for the MagickoPushbutton icon component
|
|
13631
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13632
|
+
*/
|
|
13633
|
+
interface MagickoPushbuttonProps extends React.SVGProps<SVGSVGElement> {
|
|
13634
|
+
size?: number | string;
|
|
13635
|
+
}
|
|
13636
|
+
/**
|
|
13637
|
+
* MagickoPushbutton icon component
|
|
13638
|
+
* @example
|
|
13639
|
+
* ```tsx
|
|
13640
|
+
* import { MagickoPushbutton } from 'magick-icons';
|
|
13641
|
+
*
|
|
13642
|
+
* <MagickoPushbutton size={24} className="text-blue-500" strokeWidth={2} />
|
|
13643
|
+
* ```
|
|
13644
|
+
*/
|
|
13645
|
+
declare const MagickoPushbutton: React.ForwardRefExoticComponent<Omit<MagickoPushbuttonProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13646
|
+
|
|
13647
|
+
/**
|
|
13648
|
+
* Props for the MagickoPushfinger icon component
|
|
13649
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13650
|
+
*/
|
|
13651
|
+
interface MagickoPushfingerProps extends React.SVGProps<SVGSVGElement> {
|
|
13652
|
+
size?: number | string;
|
|
13653
|
+
}
|
|
13654
|
+
/**
|
|
13655
|
+
* MagickoPushfinger icon component
|
|
13656
|
+
* @example
|
|
13657
|
+
* ```tsx
|
|
13658
|
+
* import { MagickoPushfinger } from 'magick-icons';
|
|
13659
|
+
*
|
|
13660
|
+
* <MagickoPushfinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
13661
|
+
* ```
|
|
13662
|
+
*/
|
|
13663
|
+
declare const MagickoPushfinger: React.ForwardRefExoticComponent<Omit<MagickoPushfingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13664
|
+
|
|
13665
|
+
/**
|
|
13666
|
+
* Props for the MagickoQuestionBubble icon component
|
|
13667
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13668
|
+
*/
|
|
13669
|
+
interface MagickoQuestionBubbleProps extends React.SVGProps<SVGSVGElement> {
|
|
13670
|
+
size?: number | string;
|
|
13671
|
+
}
|
|
13672
|
+
/**
|
|
13673
|
+
* MagickoQuestionBubble icon component
|
|
13674
|
+
* @example
|
|
13675
|
+
* ```tsx
|
|
13676
|
+
* import { MagickoQuestionBubble } from 'magick-icons';
|
|
13677
|
+
*
|
|
13678
|
+
* <MagickoQuestionBubble size={24} className="text-blue-500" strokeWidth={2} />
|
|
13679
|
+
* ```
|
|
13680
|
+
*/
|
|
13681
|
+
declare const MagickoQuestionBubble: React.ForwardRefExoticComponent<Omit<MagickoQuestionBubbleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13682
|
+
|
|
13683
|
+
/**
|
|
13684
|
+
* Props for the MagickoQuestionCircle icon component
|
|
13685
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13686
|
+
*/
|
|
13687
|
+
interface MagickoQuestionCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
13688
|
+
size?: number | string;
|
|
13689
|
+
}
|
|
13690
|
+
/**
|
|
13691
|
+
* MagickoQuestionCircle icon component
|
|
13692
|
+
* @example
|
|
13693
|
+
* ```tsx
|
|
13694
|
+
* import { MagickoQuestionCircle } from 'magick-icons';
|
|
13695
|
+
*
|
|
13696
|
+
* <MagickoQuestionCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
13697
|
+
* ```
|
|
13698
|
+
*/
|
|
13699
|
+
declare const MagickoQuestionCircle: React.ForwardRefExoticComponent<Omit<MagickoQuestionCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13700
|
+
|
|
13701
|
+
/**
|
|
13702
|
+
* Props for the MagickoQuestionSquare icon component
|
|
13703
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13704
|
+
*/
|
|
13705
|
+
interface MagickoQuestionSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
13706
|
+
size?: number | string;
|
|
13707
|
+
}
|
|
13708
|
+
/**
|
|
13709
|
+
* MagickoQuestionSquare icon component
|
|
13710
|
+
* @example
|
|
13711
|
+
* ```tsx
|
|
13712
|
+
* import { MagickoQuestionSquare } from 'magick-icons';
|
|
13713
|
+
*
|
|
13714
|
+
* <MagickoQuestionSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
13715
|
+
* ```
|
|
13716
|
+
*/
|
|
13717
|
+
declare const MagickoQuestionSquare: React.ForwardRefExoticComponent<Omit<MagickoQuestionSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13718
|
+
|
|
13719
|
+
/**
|
|
13720
|
+
* Props for the MagickoQuoteDown icon component
|
|
13721
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13722
|
+
*/
|
|
13723
|
+
interface MagickoQuoteDownProps extends React.SVGProps<SVGSVGElement> {
|
|
13724
|
+
size?: number | string;
|
|
13725
|
+
}
|
|
13726
|
+
/**
|
|
13727
|
+
* MagickoQuoteDown icon component
|
|
13728
|
+
* @example
|
|
13729
|
+
* ```tsx
|
|
13730
|
+
* import { MagickoQuoteDown } from 'magick-icons';
|
|
13731
|
+
*
|
|
13732
|
+
* <MagickoQuoteDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
13733
|
+
* ```
|
|
13734
|
+
*/
|
|
13735
|
+
declare const MagickoQuoteDown: React.ForwardRefExoticComponent<Omit<MagickoQuoteDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13736
|
+
|
|
13737
|
+
/**
|
|
13738
|
+
* Props for the MagickoQuoteUp icon component
|
|
13739
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13740
|
+
*/
|
|
13741
|
+
interface MagickoQuoteUpProps extends React.SVGProps<SVGSVGElement> {
|
|
13742
|
+
size?: number | string;
|
|
13743
|
+
}
|
|
13744
|
+
/**
|
|
13745
|
+
* MagickoQuoteUp icon component
|
|
13746
|
+
* @example
|
|
13747
|
+
* ```tsx
|
|
13748
|
+
* import { MagickoQuoteUp } from 'magick-icons';
|
|
13749
|
+
*
|
|
13750
|
+
* <MagickoQuoteUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
13751
|
+
* ```
|
|
13752
|
+
*/
|
|
13753
|
+
declare const MagickoQuoteUp: React.ForwardRefExoticComponent<Omit<MagickoQuoteUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13754
|
+
|
|
13755
|
+
/**
|
|
13756
|
+
* Props for the MagickoRam icon component
|
|
13757
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13758
|
+
*/
|
|
13759
|
+
interface MagickoRamProps extends React.SVGProps<SVGSVGElement> {
|
|
13760
|
+
size?: number | string;
|
|
13761
|
+
}
|
|
13762
|
+
/**
|
|
13763
|
+
* MagickoRam icon component
|
|
13764
|
+
* @example
|
|
13765
|
+
* ```tsx
|
|
13766
|
+
* import { MagickoRam } from 'magick-icons';
|
|
13767
|
+
*
|
|
13768
|
+
* <MagickoRam size={24} className="text-blue-500" strokeWidth={2} />
|
|
13769
|
+
* ```
|
|
13770
|
+
*/
|
|
13771
|
+
declare const MagickoRam: React.ForwardRefExoticComponent<Omit<MagickoRamProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13772
|
+
|
|
13773
|
+
/**
|
|
13774
|
+
* Props for the MagickoRam2 icon component
|
|
13775
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13776
|
+
*/
|
|
13777
|
+
interface MagickoRam2Props extends React.SVGProps<SVGSVGElement> {
|
|
13778
|
+
size?: number | string;
|
|
13779
|
+
}
|
|
13780
|
+
/**
|
|
13781
|
+
* MagickoRam2 icon component
|
|
13782
|
+
* @example
|
|
13783
|
+
* ```tsx
|
|
13784
|
+
* import { MagickoRam2 } from 'magick-icons';
|
|
13785
|
+
*
|
|
13786
|
+
* <MagickoRam2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13787
|
+
* ```
|
|
13788
|
+
*/
|
|
13789
|
+
declare const MagickoRam2: React.ForwardRefExoticComponent<Omit<MagickoRam2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13790
|
+
|
|
13791
|
+
/**
|
|
13792
|
+
* Props for the MagickoReceipt1 icon component
|
|
13793
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13794
|
+
*/
|
|
13795
|
+
interface MagickoReceipt1Props extends React.SVGProps<SVGSVGElement> {
|
|
13796
|
+
size?: number | string;
|
|
13797
|
+
}
|
|
13798
|
+
/**
|
|
13799
|
+
* MagickoReceipt1 icon component
|
|
13800
|
+
* @example
|
|
13801
|
+
* ```tsx
|
|
13802
|
+
* import { MagickoReceipt1 } from 'magick-icons';
|
|
13803
|
+
*
|
|
13804
|
+
* <MagickoReceipt1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13805
|
+
* ```
|
|
13806
|
+
*/
|
|
13807
|
+
declare const MagickoReceipt1: React.ForwardRefExoticComponent<Omit<MagickoReceipt1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13808
|
+
|
|
13809
|
+
/**
|
|
13810
|
+
* Props for the MagickoReceipt11 icon component
|
|
13811
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13812
|
+
*/
|
|
13813
|
+
interface MagickoReceipt11Props extends React.SVGProps<SVGSVGElement> {
|
|
13814
|
+
size?: number | string;
|
|
13815
|
+
}
|
|
13816
|
+
/**
|
|
13817
|
+
* MagickoReceipt11 icon component
|
|
13818
|
+
* @example
|
|
13819
|
+
* ```tsx
|
|
13820
|
+
* import { MagickoReceipt11 } from 'magick-icons';
|
|
13821
|
+
*
|
|
13822
|
+
* <MagickoReceipt11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13823
|
+
* ```
|
|
13824
|
+
*/
|
|
13825
|
+
declare const MagickoReceipt11: React.ForwardRefExoticComponent<Omit<MagickoReceipt11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13826
|
+
|
|
13827
|
+
/**
|
|
13828
|
+
* Props for the MagickoReceipt2 icon component
|
|
13829
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13830
|
+
*/
|
|
13831
|
+
interface MagickoReceipt2Props extends React.SVGProps<SVGSVGElement> {
|
|
13832
|
+
size?: number | string;
|
|
13833
|
+
}
|
|
13834
|
+
/**
|
|
13835
|
+
* MagickoReceipt2 icon component
|
|
13836
|
+
* @example
|
|
13837
|
+
* ```tsx
|
|
13838
|
+
* import { MagickoReceipt2 } from 'magick-icons';
|
|
13839
|
+
*
|
|
13840
|
+
* <MagickoReceipt2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13841
|
+
* ```
|
|
13842
|
+
*/
|
|
13843
|
+
declare const MagickoReceipt2: React.ForwardRefExoticComponent<Omit<MagickoReceipt2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13844
|
+
|
|
13845
|
+
/**
|
|
13846
|
+
* Props for the MagickoReceipt21 icon component
|
|
13847
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13848
|
+
*/
|
|
13849
|
+
interface MagickoReceipt21Props extends React.SVGProps<SVGSVGElement> {
|
|
13850
|
+
size?: number | string;
|
|
13851
|
+
}
|
|
13852
|
+
/**
|
|
13853
|
+
* MagickoReceipt21 icon component
|
|
13854
|
+
* @example
|
|
13855
|
+
* ```tsx
|
|
13856
|
+
* import { MagickoReceipt21 } from 'magick-icons';
|
|
13857
|
+
*
|
|
13858
|
+
* <MagickoReceipt21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13859
|
+
* ```
|
|
13860
|
+
*/
|
|
13861
|
+
declare const MagickoReceipt21: React.ForwardRefExoticComponent<Omit<MagickoReceipt21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13862
|
+
|
|
13863
|
+
/**
|
|
13864
|
+
* Props for the MagickoReceipt211 icon component
|
|
13865
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13866
|
+
*/
|
|
13867
|
+
interface MagickoReceipt211Props extends React.SVGProps<SVGSVGElement> {
|
|
13868
|
+
size?: number | string;
|
|
13869
|
+
}
|
|
13870
|
+
/**
|
|
13871
|
+
* MagickoReceipt211 icon component
|
|
13872
|
+
* @example
|
|
13873
|
+
* ```tsx
|
|
13874
|
+
* import { MagickoReceipt211 } from 'magick-icons';
|
|
13875
|
+
*
|
|
13876
|
+
* <MagickoReceipt211 size={24} className="text-blue-500" strokeWidth={2} />
|
|
13877
|
+
* ```
|
|
13878
|
+
*/
|
|
13879
|
+
declare const MagickoReceipt211: React.ForwardRefExoticComponent<Omit<MagickoReceipt211Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13880
|
+
|
|
13881
|
+
/**
|
|
13882
|
+
* Props for the MagickoReceiptAdd icon component
|
|
13883
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13884
|
+
*/
|
|
13885
|
+
interface MagickoReceiptAddProps extends React.SVGProps<SVGSVGElement> {
|
|
13886
|
+
size?: number | string;
|
|
13887
|
+
}
|
|
13888
|
+
/**
|
|
13889
|
+
* MagickoReceiptAdd icon component
|
|
13890
|
+
* @example
|
|
13891
|
+
* ```tsx
|
|
13892
|
+
* import { MagickoReceiptAdd } from 'magick-icons';
|
|
13893
|
+
*
|
|
13894
|
+
* <MagickoReceiptAdd size={24} className="text-blue-500" strokeWidth={2} />
|
|
13895
|
+
* ```
|
|
13896
|
+
*/
|
|
13897
|
+
declare const MagickoReceiptAdd: React.ForwardRefExoticComponent<Omit<MagickoReceiptAddProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13898
|
+
|
|
13899
|
+
/**
|
|
13900
|
+
* Props for the MagickoReceiptDiscount icon component
|
|
13901
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13902
|
+
*/
|
|
13903
|
+
interface MagickoReceiptDiscountProps extends React.SVGProps<SVGSVGElement> {
|
|
13904
|
+
size?: number | string;
|
|
13905
|
+
}
|
|
13906
|
+
/**
|
|
13907
|
+
* MagickoReceiptDiscount icon component
|
|
13908
|
+
* @example
|
|
13909
|
+
* ```tsx
|
|
13910
|
+
* import { MagickoReceiptDiscount } from 'magick-icons';
|
|
13911
|
+
*
|
|
13912
|
+
* <MagickoReceiptDiscount size={24} className="text-blue-500" strokeWidth={2} />
|
|
13913
|
+
* ```
|
|
13914
|
+
*/
|
|
13915
|
+
declare const MagickoReceiptDiscount: React.ForwardRefExoticComponent<Omit<MagickoReceiptDiscountProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13916
|
+
|
|
13917
|
+
/**
|
|
13918
|
+
* Props for the MagickoReceiptDisscount icon component
|
|
13919
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13920
|
+
*/
|
|
13921
|
+
interface MagickoReceiptDisscountProps extends React.SVGProps<SVGSVGElement> {
|
|
13922
|
+
size?: number | string;
|
|
13923
|
+
}
|
|
13924
|
+
/**
|
|
13925
|
+
* MagickoReceiptDisscount icon component
|
|
13926
|
+
* @example
|
|
13927
|
+
* ```tsx
|
|
13928
|
+
* import { MagickoReceiptDisscount } from 'magick-icons';
|
|
13929
|
+
*
|
|
13930
|
+
* <MagickoReceiptDisscount size={24} className="text-blue-500" strokeWidth={2} />
|
|
13931
|
+
* ```
|
|
13932
|
+
*/
|
|
13933
|
+
declare const MagickoReceiptDisscount: React.ForwardRefExoticComponent<Omit<MagickoReceiptDisscountProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13934
|
+
|
|
13935
|
+
/**
|
|
13936
|
+
* Props for the MagickoReceiptEdit icon component
|
|
13937
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
13938
|
+
*/
|
|
13939
|
+
interface MagickoReceiptEditProps extends React.SVGProps<SVGSVGElement> {
|
|
13940
|
+
size?: number | string;
|
|
13941
|
+
}
|
|
13942
|
+
/**
|
|
13943
|
+
* MagickoReceiptEdit icon component
|
|
13944
|
+
* @example
|
|
13945
|
+
* ```tsx
|
|
13946
|
+
* import { MagickoReceiptEdit } from 'magick-icons';
|
|
13947
|
+
*
|
|
13948
|
+
* <MagickoReceiptEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
13949
|
+
* ```
|
|
13950
|
+
*/
|
|
13951
|
+
declare const MagickoReceiptEdit: React.ForwardRefExoticComponent<Omit<MagickoReceiptEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13952
|
+
|
|
12873
13953
|
/**
|
|
12874
13954
|
* Props for the Marketing icon component
|
|
12875
13955
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -13158,4 +14238,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
13158
14238
|
*/
|
|
13159
14239
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
13160
14240
|
|
|
13161
|
-
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, MagickoMicrophone211, type MagickoMicrophone211Props, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, type MagickoNote2Props, 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 };
|
|
14241
|
+
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, MagickoMicrophone211, type MagickoMicrophone211Props, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, MagickoReceipt211, type MagickoReceipt211Props, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, 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 };
|