
      import React, { Component } from 'react';

      export default class SortIcon 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-sort-icon ${this.props.className}`}><path d="M10 13v-2h8v2h-8zm0 6v-2h4v2h-4zm0-11.998V5h12v2.002H10zM6 17h2.5L5 20.5 1.5 17H4V7H1.5L5 3.5 8.5 7H6v10z"/></svg>
          )
        }
      }