
      import React, { Component } from 'react';

      export default class TemperatureCelsiusIcon 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-temperature-celsius-icon ${this.props.className}`}><path d="M16.5 5c1.551 0 2.993.471 4.189 1.278L19.53 9.173a4.5 4.5 0 1 0-.3 6.904l1.14 2.849A7.5 7.5 0 1 1 16.5 5zM6 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>
          )
        }
      }