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