import React, { forwardRef, SVGProps } from 'react'; interface IconProps extends SVGProps { color?: string; size?: string | number; title?: string; } export const IconEyeSlashFill = forwardRef(({ color = 'currentColor', size = '1em', title, ...rest }, ref) => { return ( {title ? {title} : null} ); });