import * as React from 'react' import Svg, { Path } from 'react-native-svg' import Colors, { ColorValue } from 'src/styles/colors' export interface Props { size?: number color?: ColorValue } function EyeIcon({ color, size }: Props) { return ( ) } EyeIcon.defaultProps = { size: 24, color: Colors.contentPrimary, } export default EyeIcon