@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 889 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoTwitchColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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: "#fff", d: "m19.5 11.75-3 3h-3l-2.625 2.625V14.75H7.5V3.5h12z" }), _jsx("path", { fill: "#9146FF", d: "M17.25 6.125h-1.5v4.5h1.5zM11.625 6.125h1.5v4.5h-1.5z" }), _jsx("path", { fill: "#9146FF", fillRule: "evenodd", d: "M6.75 2 3 5.75v13.5h4.5V23l3.75-3.75h3L21 12.5V2zm12.75 9.75-3 3h-3l-2.625 2.625V14.75H7.5V3.5h12z", clipRule: "evenodd" })] }));
};
IconLogoTwitchColor.iconName = "logo-twitch--color";
export default IconLogoTwitchColor;