UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.01 kB
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", { 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", { d: "M19.5 11.75L16.5 14.75H13.5L10.875 17.375V14.75H7.5V3.5H19.5V11.75Z", fill: "white" }), _jsx("path", { d: "M17.25 6.125H15.75V10.625H17.25V6.125Z", fill: "#9146FF" }), _jsx("path", { d: "M11.625 6.125H13.125V10.625H11.625V6.125Z", fill: "#9146FF" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.75 2L3 5.75V19.25H7.5V23L11.25 19.25H14.25L21 12.5V2H6.75ZM19.5 11.75L16.5 14.75H13.5L10.875 17.375V14.75H7.5V3.5H19.5V11.75Z", fill: "#9146FF" })] })); }; IconLogoTwitchColor.iconName = "logo-twitch--color"; export default IconLogoTwitchColor;