UNPKG

remix-icons-rn

Version:

React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.

14 lines (13 loc) 626 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgEyeCloseLine = (props) => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" {...props} > <Path d="m9.343 18.782-1.932-.518.787-2.939a11 11 0 0 1-3.237-1.872l-2.153 2.154-1.414-1.414 2.153-2.154a10.96 10.96 0 0 1-2.371-5.07l1.968-.359C3.903 10.813 7.579 14 12 14s8.098-3.187 8.857-7.39l1.968.358a10.96 10.96 0 0 1-2.372 5.071l2.154 2.154-1.414 1.414-2.154-2.154a11 11 0 0 1-3.237 1.872l.788 2.94-1.932.517-.788-2.94a11 11 0 0 1-3.74 0z" /> </Svg> ); export default SvgEyeCloseLine;