react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 508 B
JavaScript
import React from 'react';
export default function MapMarkerOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-map-marker-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 6.5A2.5 2.5 0 0 1 14.5 9a2.5 2.5 0 0 1-2.5 2.5A2.5 2.5 0 0 1 9.5 9 2.5 2.5 0 0 1 12 6.5M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7m0 2a5 5 0 0 0-5 5c0 1 0 3 5 9.71C17 12 17 10 17 9a5 5 0 0 0-5-5z" />
</svg>
);
}