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