iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 512 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgEdit(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.75 19.25l4.25-1 9.293-9.293a1 1 0 000-1.414l-1.836-1.836a1 1 0 00-1.414 0L5.75 15l-1 4.25zM19.25 19.25h-5.5" })));
}
export default SvgEdit;