import type { VariantProps } from "class-variance-authority" import { iconVariants } from "./variants" export interface IconProps extends Omit, "color">, VariantProps { size?: number } export interface IllustrationProps extends Omit, "color">, Omit, "color"> { width?: string | number height?: string | number } export interface LogoProps extends Omit< React.SVGAttributes, "color" > { width?: string | number height?: string | number } export interface NucleoIconProps extends IconProps { strokeWidth?: number | string }