/// type MaterialIconStyle = 'outlined' | 'rounded' | 'sharp'; export interface IconProps extends React.HTMLAttributes { i: string; size?: number | string; iconStyle?: MaterialIconStyle; } export {};