
      import React, { Component } from 'react';

      export default class HumanHandsupIcon 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-handsup-icon ${this.props.className}`}><path d="M5 1a7.005 7.005 0 0 0 3.999 6.319v14.684H11V15h1.997v7.003H15V7.313A6.997 6.997 0 0 0 18.999 1h-1.996a5 5 0 0 1-10 0m5 0a1.999 1.999 0 1 0-.008 3.998A1.999 1.999 0 0 0 12.003 1z"/></svg>
          )
        }
      }