react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 415 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgSpin(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M13 3a7 7 0 000 14 5 5 0 000-10 3 3 0 000 6 1 1 0 000-2 1 1 0 010-2 3 3 0 010 6 5 5 0 010-10 7 7 0 010 14 9 9 0 01-9-9 1 1 0 00-2 0 11 11 0 0011 11 9 9 0 000-18z" fill="currentColor"/>
</Svg>);
}
export default SvgSpin;