
      import React, { Component } from 'react';

      export default class FridgeIcon 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-fridge-icon ${this.props.className}`}><path d="M9 21v1H7v-1a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2v1h-2v-1H9zM7 4v5h10V4H7zm0 15h10v-8H7v8zm1-7h2v3H8v-3zm0-6h2v2H8V6z"/></svg>
          )
        }
      }