react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 758 B
JSX
import React, { Component } from 'react';
export default class GoogleNearbyIcon 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-google-nearby-icon ${this.props.className}`}><g><path d="M21.36 10.46l-7.82-7.82a2.18 2.18 0 0 0-3.08 0l-7.82 7.82a2.18 2.18 0 0 0 0 3.08l7.82 7.82a2.18 2.18 0 0 0 3.08 0l7.82-7.82a2.18 2.18 0 0 0 0-3.08zM12 19l-7-7 7-7 7 7-7 7zm4.5-7L12 16.5 7.5 12 12 7.5l4.5 4.5z"/></g></svg>
)
}
}