import type { VariantProps } from 'class-variance-authority' import { iconVariants } from './variants' export interface IconProps extends Omit, 'color'>, VariantProps { size?: number } export interface LogoAndIllustrationProps extends Omit, 'color'>, VariantProps { width?: string | number height?: string | number } export interface NucleoIconProps extends IconProps { strokewidth?: number }