export interface IconProps {
    icon: string;
    color?: string;
    size?: 's' | 'm' | 'l' | 'xl';
}
