import { type VariantProps } from 'class-variance-authority' import { type SVGProps } from 'react' import { type iconVariants } from './iconVariants' type Color = VariantProps['color'] | undefined export type SvgIcon = SVGProps & { color?: Color }