
      import React, { Component } from 'react';

      export default class FoodIcon 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-food-icon ${this.props.className}`}><path fillRule="evenodd" d="M15.5 21L14 8h2.234l-1.137-4.538 1.746-.438L18.09 8H22l-1.5 13h-5zM5 11h5a3 3 0 0 1 3 3H2a3 3 0 0 1 3-3zm8 7a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3h11zM3 15h5l1.5 1.5L11 15h1a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2z"/></svg>
          )
        }
      }