@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.95 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconPowerOff = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.21967 21.7803C1.92678 21.4874 1.92678 21.0126 2.21967 20.7197L20.7197 2.21967C21.0126 1.92678 21.4874 1.92678 21.7803 2.21967C22.0732 2.51256 22.0732 2.98744 21.7803 3.28033L18.8722 6.1885C19.8542 7.34979 20.5288 8.74453 20.8271 10.2442C21.1743 11.99 20.9961 13.7996 20.3149 15.4441C19.6337 17.0887 18.4802 18.4943 17.0001 19.4832C15.5201 20.4722 13.78 21 12 21C10.22 21 8.47992 20.4722 6.99987 19.4832C6.71716 19.2943 6.44637 19.0902 6.1885 18.8722L3.28033 21.7803C2.98744 22.0732 2.51256 22.0732 2.21967 21.7803ZM7.25361 17.807C7.43927 17.9588 7.63265 18.102 7.83323 18.236C9.0666 19.0601 10.5166 19.5 12 19.5C13.4834 19.5 14.9334 19.0601 16.1668 18.236C17.4001 17.4119 18.3614 16.2406 18.9291 14.8701C19.4968 13.4997 19.6453 11.9917 19.3559 10.5368C19.1155 9.32839 18.582 8.2017 17.8071 7.25361L7.25361 17.807Z" }), _jsx("path", { d: "M4.24821 16.5727L5.35098 15.4699C5.24912 15.2748 5.15563 15.0747 5.07091 14.8701C4.50325 13.4997 4.35473 11.9917 4.64411 10.5368C4.9335 9.08197 5.64781 7.74559 6.6967 6.6967C6.9896 6.40381 6.9896 5.92893 6.6967 5.63604C6.40381 5.34315 5.92894 5.34315 5.63604 5.63604C4.37737 6.89471 3.5202 8.49836 3.17294 10.2442C2.82567 11.99 3.0039 13.7996 3.68509 15.4442C3.84682 15.8346 4.03518 16.2116 4.24821 16.5727Z" }), _jsx("path", { d: "M11.25 2.75V9.57093L12.75 8.07093V2.75C12.75 2.33579 12.4142 2 12 2C11.5858 2 11.25 2.33579 11.25 2.75Z" })] }));
};
IconPowerOff.iconName = "power-off";
export default IconPowerOff;