UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 600 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgRedo(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: "M14.75 4.75L19.25 9l-4.5 4.25" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M19.25 9H8.75a4 4 0 00-4 4v6.25" }))); } export default SvgRedo;