react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 925 B
JSX
import React, { Component } from 'react';
export default class TrafficLightIcon 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-traffic-light-icon ${this.props.className}`}><path d="M12 8.998A2 2 0 1 1 12 5a2 2 0 0 1 0 4zm0 5A2 2 0 1 1 12 10a2 2 0 0 1 0 4zm0 5A2 2 0 1 1 12 15a2 2 0 0 1 0 4zm8-9h-3V8.856a3.988 3.988 0 0 0 3-3.858h-3v-1a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v1H4a3.99 3.99 0 0 0 3 3.858v1.142H4a3.99 3.99 0 0 0 3 3.858v1.142H4a3.99 3.99 0 0 0 3 3.858v1.142a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.142a3.988 3.988 0 0 0 3-3.858h-3v-1.142a3.988 3.988 0 0 0 3-3.858z"/></svg>
)
}
}