
      import React, { Component } from 'react';

      export default class LanPendingIcon 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-pending-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 2h6v4H4V3zm-1 9v2h2v-2H3zm11 1c-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-6zM3 15v2h2v-2H3zm11 0h6v4h-6v-4zM3 18v2h2v-2H3zm3 0v2h2v-2H6zm3 0v2h2v-2H9z"/></svg>
          )
        }
      }