react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 567 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTreasureMapFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m2 5 7-3 6 3 6.303-2.701a.5.5 0 0 1 .697.46V19l-7 3-6-3-6.303 2.701a.5.5 0 0 1-.697-.46zm4 6v2h2v-2zm4 0v2h2v-2zm6-.06-1.237-1.238-1.061 1.06L14.939 12l-1.237 1.237 1.06 1.061L16 13.061l1.237 1.237 1.061-1.06L17.061 12l1.237-1.237-1.06-1.061z" />
</Svg>
);
export default SvgTreasureMapFill;