@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 598 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTreasureMapLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m14.935 7.204-6-3L4 6.319v12.648l5.065-2.17 6 3L20 17.68V5.033l-5.065 2.17ZM2 5l7-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-.46V5Zm4 6h2v2H6v-2Zm4 0h2v2h-2v-2Zm5.998-.063L17.235 9.7l1.061 1.06-1.237 1.238 1.237 1.238-1.06 1.06-1.238-1.237-1.237 1.237-1.061-1.06 1.237-1.238-1.237-1.237L14.76 9.7l1.238 1.237Z" />
</Svg>
);
export default SvgTreasureMapLine;