react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 447 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgLoader(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4M4.93 19.07l2.83-2.83M16.24 7.76l2.83-2.83"/>
</Svg>);
}
export default SvgLoader;