@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 885 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoBestBuyColor = (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: "M5.43799 5H22.9199V19H5.43241L1.08008 14.9043V9.12913L5.43799 5Z", fill: "#FFF200" }), _jsx("path", { d: "M4.56229 11.9916C4.56229 12.4715 4.17728 12.8565 3.69741 12.8565C3.21754 12.8565 2.83252 12.4715 2.83252 11.9916C2.83252 11.5117 3.21754 11.1267 3.69741 11.1267C4.1717 11.1267 4.56229 11.5173 4.56229 11.9916Z", fill: "#1D252C" })] }));
};
IconLogoBestBuyColor.iconName = "logo-best-buy--color";
export default IconLogoBestBuyColor;