
      import React, { Component } from 'react';

      export default class ServerOffIcon 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-off-icon ${this.props.className}`}><path d="M4 1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H8.823l-2-2H7V3H5v.177l-1.79-1.79A.998.998 0 0 1 4 1zm18 21.723L20.732 24l-1-1H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h9.732l-2-2H4a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h1.732L3.679 6.947a1.003 1.003 0 0 1-.626-.626L1 4.27 2.277 3 22 22.723zM20 9a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-3.177l-6-6H20zm0 8a1 1 0 0 1 1 1v1.177L18.823 17H20zM9 5h1V3H9v2zm0 8h.732L9 12.268V13zm0 8h1v-2H9v2zM5 11v2h2v-2H5zm0 8v2h2v-2H5z"/></svg>
          )
        }
      }