
      import React, { Component } from 'react';

      export default class BeerIcon 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-beer-icon ${this.props.className}`}><path d="M4 2h15l-2 20H6L4 2zm2.2 2l1.6 16h1L7.434 6.34C8.476 6.011 9.89 5.89 11 7c1.557 1.557 4.327.69 5.477.229L16.8 4H6.2z"/></svg>
          )
        }
      }