
      import React, { Component } from 'react';

      export default class WhiteBalanceIncandescentIcon 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-white-balance-incandescent-icon ${this.props.className}`}><path d="M17.242 18.155l1.795 1.795 1.414-1.415-1.795-1.794M20 12.498h3v-2h-3m-5-4.19v-4.81H9v4.81a5.994 5.994 0 0 0-3 5.19 6 6 0 0 0 12 0 5.992 5.992 0 0 0-3-5.19zm-11 4.19H1v2h3m7 9.95c.316.002 2 0 2 0v-2.95h-2m-7.45-.963l1.413 1.415 1.795-1.795-1.414-1.414-1.795 1.794z"/></svg>
          )
        }
      }