UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 594 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgUndo(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: "M9.25 4.75L4.75 9l4.5 4.25" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M5.5 9h9.75a4 4 0 014 4v6.25" }))); } export default SvgUndo;