react-native-feather
Version:
React Native component for Feather icons
10 lines (9 loc) • 454 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgEdit(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/>
<Path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/>
</Svg>);
}
export default SvgEdit;