
      import React, { Component } from 'react';

      export default class ReplyAllIcon 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-reply-all-icon ${this.props.className}`}><path d="M13 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11zM7 8V5l-7 7 7 7v-3l-4-4 4-4z"/></svg>
          )
        }
      }