react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 471 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgBowlingBall(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M7.992 8.002a1 1 0 101 1 1 1 0 00-1-1zm4-6a10 10 0 1010 10 10.012 10.012 0 00-10-10zm0 18a8 8 0 118-8 8.01 8.01 0 01-8 8zm-1-10a1 1 0 101 1 1 1 0 00-1-1zm0-4a1 1 0 101 1 1 1 0 00-1-1z" fill="currentColor"/>
</Svg>);
}
export default SvgBowlingBall;