@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 638 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoStripeColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 21.2152L21 17.3427V2.78491L3 6.58571V21.2152Z", fill: "#533AFD" }) }));
};
IconLogoStripeColor.iconName = "logo-stripe--color";
export default IconLogoStripeColor;