
      import React, { Component } from 'react';

      export default class CoffeeToGoIcon 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-coffee-to-go-icon ${this.props.className}`}><path d="M3 19v-2h14.01l-1.755-1.755 1.414-1.414L20.84 18l-4.17 4.168-1.414-1.414L17.01 19H3zM17 8V5h-2v3h2zm0-5a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-2v1a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V3h14z"/></svg>
          )
        }
      }