react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 709 B
JSX
import React, { Component } from 'react';
export default class LightbulbIcon 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-lightbulb-icon ${this.props.className}`}><path d="M12 1.998a7 7 0 0 0-7 7 6.987 6.987 0 0 0 3 5.74v2.26a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2.26a6.987 6.987 0 0 0 3-5.74 7 7 0 0 0-7-7zm-3 19a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1H9v1z"/></svg>
)
}
}