UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.27 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconStreamOff = (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", { fillRule: "evenodd", d: "M2.22 21.78a.75.75 0 0 1 0-1.06l18.5-18.5a.75.75 0 1 1 1.06 1.06l-1.49 1.49a11 11 0 0 1-.512 15.008.75.75 0 0 1-1.06-1.06 9.5 9.5 0 0 0 .509-12.884l-1.775 1.775a7 7 0 0 1 1.015 7.07 7 7 0 0 1-1.517 2.27.75.75 0 1 1-1.06-1.06 5.5 5.5 0 0 0 .493-7.211l-1.798 1.798a3 3 0 0 1-4.109 4.109l-2.36 2.36-.01.01-2.819 2.818-.01.01L3.28 21.78a.75.75 0 0 1-1.06 0m9.391-8.33a1.5 1.5 0 0 0 1.838-1.838z", clipRule: "evenodd" }), _jsx("path", { d: "m2.796 18.025 1.088-1.088A9.5 9.5 0 0 1 2.5 12a9.5 9.5 0 0 1 2.782-6.717.75.75 0 0 0-1.06-1.061 11 11 0 0 0-1.426 13.803" }), _jsx("path", { d: "M5.723 15.098 6.86 13.96a5.5 5.5 0 0 1 1.25-5.849.75.75 0 1 0-1.06-1.06 7 7 0 0 0-1.328 8.047M11.815 9.006l-2.81 2.81a3 3 0 0 1 2.81-2.81" })] })); }; IconStreamOff.iconName = "stream-off"; export default IconStreamOff;