
      import React, { Component } from 'react';

      export default class HelpIcon 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-help-icon ${this.props.className}`}><path d="M10 19h3v3h-3v-3m2-17c5.354.223 7.677 5.618 4.5 9.67-.83 1-2.17 1.66-2.83 2.5C13 15 13 16 13 17h-3c0-1.67 0-3.08.67-4.08.66-1 2-1.59 2.83-2.25C15.916 8.43 15.32 5.257 12 5a3 3 0 0 0-3 3H6a6 6 0 0 1 6-6z"/></svg>
          )
        }
      }