
      import React, { Component } from 'react';

      export default class MessageReplyTextIcon 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-message-reply-text-icon ${this.props.className}`}><path d="M17.997 7.997H6.001V6.002h11.996v1.996zm0 3.004H6.001V9h11.996V11zm0 2.998H6.001v-1.997h11.996V14zm3.995-10A1.998 1.998 0 0 0 20 2.002H3.999A2.001 2.001 0 0 0 2.002 4V16c0 1.099.898 1.996 1.997 1.996h13.998l4.006 4.006-.01-18.004z"/></svg>
          )
        }
      }