react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 469 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgMapLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M2 5l7-3 6 3 6.303-2.701a.5.5 0 01.697.46V19l-7 3-6-3-6.303 2.701a.5.5 0 01-.697-.46V5zm12.935 2.204l-6-3L4 6.319v12.648l5.065-2.17 6 3L20 17.68V5.033l-5.065 2.17z" />
</Svg>
);
}
export default SvgMapLine;