
      import React, { Component } from 'react';

      export default class AssistantIcon 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-assistant-icon ${this.props.className}`}><path d="M18.999 2.002H5A2.006 2.006 0 0 0 2.998 4v13.998C2.998 19.101 3.9 20 5 20h3.999l3.003 2.997L15 20h3.999A2.009 2.009 0 0 0 21 17.997V4A2.006 2.006 0 0 0 19 2.002zm-5.118 10.88l-1.879 4.12-1.88-4.12-4.12-1.88 4.12-1.88L12.003 5l1.88 4.121 4.115 1.88"/></svg>
          )
        }
      }