@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
20 lines (18 loc) • 405 B
JavaScript
const SvgPushPinSharp = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path fill='none' d='M0 0h24v24H0z' />
<path
d='M16 9V4h2V2H6v2h2v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3z'
fillRule='evenodd'
/>
</svg>
);
}
export default SvgPushPinSharp;