
      import React, { Component } from 'react';

      export default class ServerPlusIcon 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-server-plus-icon ${this.props.className}`}><path d="M4 4h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zm5 4h1V6H9v2zM5 6v2h2V6H5zm3 10h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z"/></svg>
          )
        }
      }