export interface IconProps {
    name: string;
    size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | number;
    color?: string;
}
