interface DogIconProps extends React.SVGProps { disabled?: boolean; } const DogIcon = ({ disabled = false, stroke, ...props }: DogIconProps) => { const fillColor = disabled ? "#71717A" : (stroke || "#22A7AF"); return ( disabled ? ( ) : ( ) ) } export default DogIcon;