react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 744 B
JSX
import React, { Component } from 'react';
export default class MapMarkerOutlineIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-map-marker-outline-icon ${this.props.className}`}><path d="M12 6.502a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zM12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7zm0 2.002a5 5 0 0 0-5 5C7 9.98 7 12 12 18.708c5-6.708 5-8.711 5-9.706a5 5 0 0 0-5-5z"/></svg>
)
}
}