UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 706 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgPenNibLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M16.596 1.04l6.347 6.346a.5.5 0 01-.277.848l-1.474.23-5.656-5.656.212-1.485a.5.5 0 01.848-.283zM4.595 20.15c3.722-3.331 7.995-4.328 12.643-5.52l.446-4.018-4.297-4.297-4.018.446c-1.192 4.648-2.189 8.92-5.52 12.643L2.454 18.01c2.828-3.3 3.89-6.953 5.303-13.081l6.364-.707 5.657 5.657-.707 6.364c-6.128 1.414-9.782 2.475-13.081 5.303L4.595 20.15zm5.284-6.03a2 2 0 112.828-2.828A2 2 0 019.88 14.12z" /> </Svg> ); } export default SvgPenNibLine;