UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.03 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconFlashOff = (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: "M15.626 2.101a.75.75 0 0 1 .338.879L14.029 9h5.221a.75.75 0 0 1 .554 1.256l-3.038 3.328-1.062-1.062L17.55 10.5h-3.868l-1.295-1.295 1.095-3.407-2.148 2.354-1.062-1.062 4.424-4.846a.75.75 0 0 1 .93-.143" }), _jsx("path", { fillRule: "evenodd", d: "m14.74 15.801 3.98 3.98a.75.75 0 1 0 1.06-1.061L5.28 4.22a.75.75 0 0 0-1.06 1.06l4.027 4.028-4.05 4.436A.75.75 0 0 0 4.75 15h5.221l-1.935 6.02a.75.75 0 0 0 1.268.736zM13.68 14.74l-4.37-4.37L6.45 13.5H11a.75.75 0 0 1 .714.98l-1.196 3.722z", clipRule: "evenodd" })] })); }; IconFlashOff.iconName = "flash-off"; export default IconFlashOff;