
      import React, { Component } from 'react';

      export default class NutritonIcon 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-nutriton-icon ${this.props.className}`}><path d="M22 18a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4v-2h12v2zM4 3h10a2 2 0 0 1 2 2v9H8v5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm0 3v2h2V6H4zm10 2V6H8v2h6zM4 10v2h2v-2H4zm4 0v2h6v-2H8zm-4 4v2h2v-2H4z"/></svg>
          )
        }
      }