import { forwardRef } from 'react'; import type { IconProps } from './types'; export const EyeOff = forwardRef(function EyeOff({ color = 'black', ...props }, ref) { return ( ); });