
      import React, { Component } from 'react';

      export default class BrightnessIcon 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-brightness-icon ${this.props.className}`}><path d="M4 4h4.686L12 .686 15.314 4H20v4.686L23.314 12 20 15.314V20h-4.686L12 23.314 8.686 20H4v-4.686L.686 12 4 8.686V4zm8 2v12a6 6 0 0 0 0-12z"/></svg>
          )
        }
      }