UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 778 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoMicrosoftColor = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { fill: "#F35325", d: "M3 3h8.6v8.6H3z" }), _jsx("path", { fill: "#05A6F0", d: "M3 12.4h8.6V21H3z" }), _jsx("path", { fill: "#FFBA08", d: "M12.4 12.4H21V21h-8.6z" }), _jsx("path", { fill: "#81BC06", d: "M12.4 3H21v8.6h-8.6z" })] })); }; IconLogoMicrosoftColor.iconName = "logo-microsoft--color"; export default IconLogoMicrosoftColor;