/** * Icon-related types shared across icon components */ export type IconSize = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' export type IconWeight = 'bold' | 'fill' | 'thin' | 'light' | 'regular' | 'duotone'