UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 461 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgEditLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M6.414 16L16.556 5.858l-1.414-1.414L5 14.586V16h1.414zm.829 2H3v-4.243L14.435 2.322a1 1 0 011.414 0l2.829 2.829a1 1 0 010 1.414L7.243 18zM3 20h18v2H3v-2z" /> </Svg> ); } export default SvgEditLine;