
      import React, { Component } from 'react';

      export default class EthernetCableIcon 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-ethernet-cable-icon ${this.props.className}`}><path d="M11 3v4h2V3h-2zM8 4v7h8V4h-2v4h-4V4H8zm2 8v10h4V12h-4z"/></svg>
          )
        }
      }