///
export interface IconProps {
/** Controls color of the Icon */
color?: string;
/** Control the size of the Icon */
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
/** Use this if you want to specify a custom size */
customSize?: number;
}
declare type Icon = React.ComponentType;
export default Icon;