@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 756 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoTwitch = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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: "M17.25 6.125h-1.5v4.5h1.5zM11.625 6.125h1.5v4.5h-1.5z" }), _jsx("path", { fillRule: "evenodd", d: "M3 5.75 6.75 2H21v10.5l-6.75 6.75h-3L7.5 23v-3.75H3zm13.5 9 3-3V3.5h-12v11.25h3.375v2.625L13.5 14.75z", clipRule: "evenodd" })] }));
};
IconLogoTwitch.iconName = "logo-twitch";
export default IconLogoTwitch;