react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 412 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgEditFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M7.243 17.997H3v-4.243L14.435 2.319a1 1 0 0 1 1.414 0l2.829 2.828a1 1 0 0 1 0 1.415zm-4.243 2h18v2H3z" />
</Svg>
);
export default SvgEditFill;