react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 335 B
JavaScript
import React from 'react';
export default function EthernetCableIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-ethernet-cable ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M11 3v4h2V3h-2M8 4v7h8V4h-2v4h-4V4H8m2 8v10h4V12h-4z" />
</svg>
);
}