UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 860 B
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", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M17.25 6.12502H15.75V10.625H17.25V6.12502Z" }), _jsx("path", { d: "M11.6251 6.12502H13.1251V10.625H11.6251V6.12502Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 5.75L6.75 2H21V12.5L14.25 19.25H11.25L7.5 23V19.25H3V5.75ZM16.5 14.75L19.5 11.75V3.5H7.5L7.49993 14.75H10.8749V17.375L13.5 14.75L16.5 14.75Z" })] })); }; IconLogoTwitch.iconName = "logo-twitch"; export default IconLogoTwitch;