UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 725 B
import React, { Component } from 'react'; export default class EthernetIcon 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-icon ${this.props.className}`}><path d="M7 15h2v3h2v-3h2v3h2v-3h2v3h2V9h-4V6H9v3H5v9h2v-3zM4.375 3h15.25A2.375 2.375 0 0 1 22 5.375v14.25A2.375 2.375 0 0 1 19.625 22H4.375A2.375 2.375 0 0 1 2 19.625V5.375A2.375 2.375 0 0 1 4.375 3z"/></svg> ) } }