import { Icons } from './constants'; export type IconType = (typeof Icons)[number]; export type IconProps = { fill: string; type: IconType; size?: number; onClick?: () => void; };