Renders an eye or eye-off SVG icon, typically used for toggling password visibility in form fields. ## Key Components **`EyeIcon`** — `React.FC` > ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead. | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | Additional CSS classes | | `size` | `number` | `24` | Width and height in pixels | | `color` | `string` | `'white'` | SVG stroke color | | `off` | `boolean` | `false` | When `true`, renders the eye-off (hidden) variant | ## Usage Example ```typescript import { EyeIcon } from './eye-icon' // Standard eye (visible state) // Eye-off (hidden state) // Password toggle button const [show, setShow] = useState(false) ```