UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 661 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconMarketplaceBrandFilled = (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", { d: "M21 3H5.5a2.5 2.5 0 0 0 0 5H14l-9.429 6.429a3.598 3.598 0 1 0 5 5L16 10v8.5a2.5 2.5 0 0 0 5 0z" }) })); }; IconMarketplaceBrandFilled.iconName = "marketplace-brand--filled"; export default IconMarketplaceBrandFilled;