
      import React, { Component } from 'react';

      export default class LightbulbOutlineIcon 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-outline-icon ${this.props.className}`}><path d="M12 1.998a7 7 0 0 1 7 7 6.987 6.987 0 0 1-3 5.74v2.26a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-2.26a6.987 6.987 0 0 1-3-5.74 7 7 0 0 1 7-7zm-3 19v-1h6v1a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zM12 4a5 5 0 0 0-2 9.584V16h4v-2.416A5.001 5.001 0 0 0 12 4z"/></svg>
          )
        }
      }