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