react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 492 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCrosshairAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12 11a1 1 0 101 1 1 1 0 00-1-1zm0-9a10 10 0 1010 10A10 10 0 0012 2zm1 17.93V17a1 1 0 00-2 0v2.93A8 8 0 014.07 13H7a1 1 0 000-2H4.07A8 8 0 0111 4.07V7a1 1 0 002 0V4.07A8 8 0 0119.93 11H17a1 1 0 000 2h2.93A8 8 0 0113 19.93z" fill="currentColor"/>
</Svg>);
}
export default SvgCrosshairAlt;