@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 857 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoWindowsColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "none", 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", fill: "#0078D4" }), _jsx("path", { d: "M12.468 2.99996H21V11.5319H12.468V2.99996Z", fill: "#0078D4" }), _jsx("path", { d: "M11.532 12.4688H3V21.0008H11.532V12.4688Z", fill: "#0078D4" }), _jsx("path", { d: "M12.468 12.4688H21V21.0008H12.468V12.4688Z", fill: "#0078D4" })] }));
};
IconLogoWindowsColor.iconName = "logo-windows--color";
export default IconLogoWindowsColor;