@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 746 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoMicrosoft = (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: "M11.5714 3H3V11.5714H11.5714V3Z" }), _jsx("path", { d: "M21 3H12.4286V11.5714H21V3Z" }), _jsx("path", { d: "M3 12.4286H11.5714V21H3V12.4286Z" }), _jsx("path", { d: "M21 12.4286H12.4286V21H21V12.4286Z" })] }));
};
IconLogoMicrosoft.iconName = "logo-microsoft";
export default IconLogoMicrosoft;