react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 583 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCrosshairFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M19.938 13A8.004 8.004 0 0 1 13 19.938V17h-2v2.938A8.004 8.004 0 0 1 4.062 13H7v-2H4.062A8.004 8.004 0 0 1 11 4.062V7h2V4.062A8.004 8.004 0 0 1 19.938 11H17v2zM2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12m10 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6" />
</Svg>
);
export default SvgCrosshairFill;