@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 775 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoWindows = (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", { d: "M3 2.99988H11.532V11.5318H3V2.99988Z" }), _jsx("path", { d: "M12.468 2.99996H21V11.5319H12.468V2.99996Z" }), _jsx("path", { d: "M11.532 12.4688H3V21.0008H11.532V12.4688Z" }), _jsx("path", { d: "M12.468 12.4688H21V21.0008H12.468V12.4688Z" })] }));
};
IconLogoWindows.iconName = "logo-windows";
export default IconLogoWindows;