@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 694 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconPower = (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: "M12.75 2.75a.75.75 0 0 0-1.5 0V12a.75.75 0 0 0 1.5 0z" }), _jsx("path", { d: "M18.364 5.636a.75.75 0 0 0-1.06 1.06 7.5 7.5 0 1 1-10.607 0 .75.75 0 1 0-1.061-1.06 9 9 0 1 0 12.728 0" })] }));
};
IconPower.iconName = "power";
export default IconPower;