/* tslint:disable */ /* eslint-disable */ import React, { FunctionComponent } from 'react'; import { ViewProps } from 'react-native'; import { Svg, GProps, Path } from 'react-native-svg'; import { getIconColor } from './helper'; interface Props extends GProps, ViewProps { size?: number; color?: string | string[]; } let Eye: FunctionComponent = ({ size, color, ...rest }) => { return ( ); }; Eye.defaultProps = { size: 18, }; Eye = React.memo ? React.memo(Eye) : Eye; export default Eye;