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) 418 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgEdit2Fill = (props) => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" {...props} > <Path d="M9.243 18.997H21v2H3v-4.243l9.9-9.9 4.242 4.243zm5.07-13.557 2.122-2.121a1 1 0 0 1 1.414 0l2.829 2.828a1 1 0 0 1 0 1.415l-2.122 2.121z" /> </Svg> ); export default SvgEdit2Fill;