react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 515 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPencilLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M15.728 9.686l-1.414-1.414L5 17.586V19h1.414l9.314-9.314zm1.414-1.414l1.414-1.414-1.414-1.414-1.414 1.414 1.414 1.414zM7.242 21H3v-4.243L16.435 3.322a1 1 0 011.414 0l2.829 2.829a1 1 0 010 1.414L7.243 21z" />
</Svg>
);
}
export default SvgPencilLine;