UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 842 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", { 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("rect", { x: 3, y: 3, width: 8.6, height: 8.6, fill: "#F35325" }), _jsx("rect", { x: 3, y: 12.4, width: 8.6, height: 8.6, fill: "#05A6F0" }), _jsx("rect", { x: 12.4004, y: 12.4, width: 8.6, height: 8.6, fill: "#FFBA08" }), _jsx("rect", { x: 12.4004, y: 3, width: 8.6, height: 8.6, fill: "#81BC06" })] })); }; IconLogoMicrosoftColor.iconName = "logo-microsoft--color"; export default IconLogoMicrosoftColor;