UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 971 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconWifi = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M7.408 6.413a12 12 0 0 1 13.077 2.602.75.75 0 1 0 1.06-1.06 13.5 13.5 0 0 0-19.091 0 .75.75 0 0 0 1.06 1.06 12 12 0 0 1 3.894-2.602" }), _jsx("path", { d: "M12 9.5a8 8 0 0 0-5.657 2.343.75.75 0 0 1-1.06-1.06 9.5 9.5 0 0 1 13.435 0 .75.75 0 1 1-1.061 1.06A8 8 0 0 0 12 9.5" }), _jsx("path", { d: "M10.47 13.805a4 4 0 0 1 4.358.867.75.75 0 0 0 1.061-1.061 5.5 5.5 0 0 0-7.778 0 .75.75 0 0 0 1.06 1.06 4 4 0 0 1 1.298-.866M12 19a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3" })] })); }; IconWifi.iconName = "wifi"; export default IconWifi;