react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 810 B
JSX
import React, { Component } from 'react';
export default class GasStationIcon 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-gas-station-icon ${this.props.className}`}><path d="M18 9.998a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm-6 0H6v-5h6m7.767 2.232l.012-.012-3.72-3.72L15 4.56l2.11 2.11A2.496 2.496 0 1 0 19 11.286v7.211a1 1 0 0 1-2 0v-4.5a2 2 0 0 0-2-2h-1v-7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16h10v-7.5h1.5v5a2.5 2.5 0 1 0 5 0v-9.5c0-.69-.28-1.315-.732-1.768z"/></svg>
)
}
}