@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 739 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const CrosshairLine = /* @__PURE__ */ memo(function CrosshairLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M13 19.938A8.004 8.004 0 0 0 19.938 13H17v-2h2.938A8.004 8.004 0 0 0 13 4.062V7h-2V4.062A8.004 8.004 0 0 0 4.062 11H7v2H4.062A8.004 8.004 0 0 0 11 19.938V17h2zM12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10m0-8a2 2 0 1 1 0-4 2 2 0 0 1 0 4"/>
</Svg>);
});
/**
* Remix Icon: Crosshair Line
* @see {@link https://remixicon.com/icon/crosshair-line Remix Icon Docs}
*/
export { CrosshairLine };