import React from 'react' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' export type EyeIconProps = Icon & Readonly<{ off?: boolean }> export const EyeIcon = ({ off, ...props }: EyeIconProps) => ( {off && ( )} {!off && ( )} ) EyeIcon.defaultProps = { ...BaseIconDefaultProps, off: false, }