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