iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 560 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgSpinner(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: "M12 4.75v1.5M17.127 6.873l-1.061 1.061M19.25 12h-1.5M17.127 17.127l-1.061-1.061M12 17.75v1.5M7.934 16.066l-1.06 1.06M6.25 12h-1.5M7.934 7.934l-1.06-1.06" })));
}
export default SvgSpinner;