UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 714 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoBestBuy = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M22.92 5H5.438L1.08 9.13v5.774L5.432 19H22.92zM3.697 12.857c.48 0 .865-.385.865-.865a.87.87 0 0 0-.865-.865.86.86 0 0 0-.864.865c0 .48.385.864.864.864", clipRule: "evenodd" }) })); }; IconLogoBestBuy.iconName = "logo-best-buy"; export default IconLogoBestBuy;