
      import React, { Component } from 'react';

      export default class BasketIcon 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-basket-icon ${this.props.className}`}><path d="M5.5 21a2 2 0 0 1-1.786-1.1l-.006.002L1.1 10.439 1 10a1 1 0 0 1 1-1h4.578l4.603-6.574a.999.999 0 0 1 1.646.012L17.422 9H22a1 1 0 0 1 1 1l-.042.287-2.672 9.613A2 2 0 0 1 18.5 21h-13zM12 4.743L9.02 9h5.96L12 4.743zM12 13a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"/></svg>
          )
        }
      }