
      import React, { Component } from 'react';

      export default class BackburgerIcon 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-backburger-icon ${this.props.className}`}><path d="M5.009 13l4.005 4.005L7.6 18.42 1.18 12 7.6 5.58l1.414 1.415L5.01 11H21v2H5.009zM21 6v2H11V6h10zm0 10v2H11v-2h10z"/></svg>
          )
        }
      }