
      import React, { Component } from 'react';

      export default class LanConnectIcon 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-lan-connect-icon ${this.props.className}`}><path d="M4 1c-1.108 0-2 .892-2 2v4c0 1.108.892 2 2 2H1v2h12V9h-3c1.108 0 2-.892 2-2V3c0-1.108-.892-2-2-2H4zm0 2h6v4H4V3zM3 13v7h7v-2H5v-5H3zm11 0c-1.108 0-2 .892-2 2v4c0 1.108.892 2 2 2h-3v2h12v-2h-3c1.108 0 2-.892 2-2v-4c0-1.108-.892-2-2-2h-6zm0 2h6v4h-6v-4z"/></svg>
          )
        }
      }