UNPKG

react-native-feather

Version:
9 lines (8 loc) 377 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgMap(props) { return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}> <Path d="M1 6v16l7-4 8 4 7-4V2l-7 4-8-4-7 4zM8 2v16M16 6v16"/> </Svg>); } export default SvgMap;