import { colorVariants } from '../colorVariants' import type { NucleoIconProps } from '../../icon' function Chips3(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 Chips3