UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 651 B
import { jsx as _jsx } 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 (_jsx("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: "#0078D4", d: "M3 3h8.532v8.532H3zM12.468 3H21v8.532h-8.532zM11.532 12.469H3V21h8.532zM12.468 12.469H21V21h-8.532z" }) })); }; IconLogoWindowsColor.iconName = "logo-windows--color"; export default IconLogoWindowsColor;