@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 674 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNetworkFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M10.5 5.937a2 2 0 1 0-1 0V9h-5a.5.5 0 0 0-.5.5v3.563a2 2 0 1 0 1 0V10h4.5v3.063a2 2 0 1 0 1 0V10H15v3.063a2 2 0 1 0 1 0V9.5a.5.5 0 0 0-.5-.5h-5z" }) }));
};
IconNetworkFilled.iconName = "network--filled";
export default IconNetworkFilled;