react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 488 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgMapMarker(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12 2a8 8 0 00-8 8c0 5.4 7.05 11.5 7.35 11.76a1 1 0 001.3 0C13 21.5 20 15.4 20 10a8 8 0 00-8-8zm0 17.65c-2.13-2-6-6.31-6-9.65a6 6 0 0112 0c0 3.34-3.87 7.66-6 9.65zM12 6a4 4 0 104 4 4 4 0 00-4-4zm0 6a2 2 0 112-2 2 2 0 01-2 2z" fill="currentColor"/>
</Svg>);
}
export default SvgMapMarker;