import { NucleoIconProps } from '../../icon' import { colorVariants } from '../colorVariants' export default function FilledDiscount({ color, size }: NucleoIconProps) { const fill = color ? colorVariants[color] : 'currentColor' const width = size || '1em' const height = size || '1em' return ( ) }