
      import React, { Component } from 'react';

      export default class HospitalBuildingIcon 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-hospital-building-icon ${this.props.className}`}><path d="M2 22V7a1 1 0 0 1 1-1h4V2h10v4h4a1 1 0 0 1 1 1v15h-8v-5h-4v5H2zM9 4v6h2V8h2v2h2V4h-2v2h-2V4H9zM4 20h4v-3H4v3zm0-5h4v-3H4v3zm12 5h4v-3h-4v3zm0-5h4v-3h-4v3zm-6 0h4v-3h-4v3z"/></svg>
          )
        }
      }