
      import React, { Component } from 'react';

      export default class HumanGreetingIcon 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-human-greeting-icon ${this.props.className}`}><path d="M1.499 3.999v1.498c0 4.152 2.207 7.78 5.503 9.8V20h15v-2.003C22.003 15.341 16.67 14 14 14h-.249C8.999 13.999 5 10 5 5.497V4m8.999 0a4.002 4.002 0 0 0 0 8.003 3.999 3.999 0 0 0 3.998-4.005A3.998 3.998 0 0 0 14 4z"/></svg>
          )
        }
      }