UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 822 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m10.13 15.842-.787 2.94-1.932-.517.787-2.94a11 11 0 0 1-3.237-1.871l-2.153 2.153-1.414-1.414 2.153-2.154a10.96 10.96 0 0 1-2.371-5.07l.9-.164A16.92 16.92 0 0 0 12 10c3.704 0 7.132-1.184 9.924-3.195l.9.163a10.96 10.96 0 0 1-2.37 5.071l2.153 2.154-1.414 1.414-2.154-2.153a11 11 0 0 1-3.237 1.872l.788 2.939-1.932.517-.788-2.94a11.1 11.1 0 0 1-3.74 0"/> </Svg>); }); Icon.displayName = 'EyeCloseFill'; /** * Remix Icon: Eye Close Fill * @see {@link https://remixicon.com/icon/eye-close-fill Remix Icon Docs} */ export const EyeCloseFill = Icon;