iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 662 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgRefresh(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: "M11.25 4.75L8.75 7l2.5 2.25M12.75 19.25l2.5-2.25-2.5-2.25" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.75 7h3.5a6 6 0 016 6v.25M14.25 17h-3.5a6 6 0 01-6-6v-.25" })));
}
export default SvgRefresh;