UNPKG

react-native-unicons

Version:
9 lines (8 loc) 452 B
import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; function SvgBullseye(props) { return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}> <Path d="M12 5a7 7 0 107 7 7 7 0 00-7-7zm0 12a5 5 0 115-5 5 5 0 01-5 5zm0-8a3 3 0 103 3 3 3 0 00-3-3zm0 4a1 1 0 111-1 1 1 0 01-1 1zm0-12a11 11 0 1011 11A11 11 0 0012 1zm0 20a9 9 0 119-9 9 9 0 01-9 9z" fill="currentColor"/> </Svg>); } export default SvgBullseye;