UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.17 kB
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", { 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", { d: "M10.5 5.93699C11.3626 5.71497 12 4.93192 12 4C12 2.89543 11.1046 2 10 2C8.89543 2 8 2.89543 8 4C8 4.93192 8.63739 5.71497 9.5 5.93699V9H4.5C4.22386 9 4 9.22386 4 9.5V13.063C3.13739 13.285 2.5 14.0681 2.5 15C2.5 16.1046 3.39543 17 4.5 17C5.60457 17 6.5 16.1046 6.5 15C6.5 14.0681 5.86261 13.285 5 13.063V10H9.5V13.063C8.63739 13.285 8 14.0681 8 15C8 16.1046 8.89543 17 10 17C11.1046 17 12 16.1046 12 15C12 14.0681 11.3626 13.285 10.5 13.063V10H15V13.063C14.1374 13.285 13.5 14.0681 13.5 15C13.5 16.1046 14.3954 17 15.5 17C16.6046 17 17.5 16.1046 17.5 15C17.5 14.0681 16.8626 13.285 16 13.063V9.5C16 9.22386 15.7761 9 15.5 9H10.5V5.93699Z" }) })); }; IconNetworkFilled.iconName = "network--filled"; export default IconNetworkFilled;