@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.31 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconEthernetFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15 4C16.1046 4 17 4.89543 17 6V13C17 14.1046 16.1046 15 15 15H14L12.5859 16.4141C12.2109 16.7891 11.7022 16.9999 11.1719 17H8.82812C8.2978 16.9999 7.78906 16.7891 7.41406 16.4141L6 15H5C3.89543 15 3 14.1046 3 13V6C3 4.89543 3.89543 4 5 4H15ZM5.5 6C5.22386 6 5 6.22386 5 6.5V8.5C5 8.77614 5.22386 9 5.5 9C5.77614 9 6 8.77614 6 8.5V6.5C6 6.22386 5.77614 6 5.5 6ZM8.5 6C8.22386 6 8 6.22386 8 6.5V8.5C8 8.77614 8.22386 9 8.5 9C8.77614 9 9 8.77614 9 8.5V6.5C9 6.22386 8.77614 6 8.5 6ZM11.5 6C11.2239 6 11 6.22386 11 6.5V8.5C11 8.77614 11.2239 9 11.5 9C11.7761 9 12 8.77614 12 8.5V6.5C12 6.22386 11.7761 6 11.5 6ZM14.5 6C14.2239 6 14 6.22386 14 6.5V8.5C14 8.77614 14.2239 9 14.5 9C14.7761 9 15 8.77614 15 8.5V6.5C15 6.22386 14.7761 6 14.5 6Z" }) }));
};
IconEthernetFilled.iconName = "ethernet--filled";
export default IconEthernetFilled;