UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 689 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoEthereum = (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: "M5.09375 12.1566L12 1L18.9063 12.1566L12 16.1085L5.09375 12.1566Z" }), _jsx("path", { d: "M12 23L5.17205 13.4876L12 17.4804L18.8279 13.4876L12 23Z" })] })); }; IconLogoEthereum.iconName = "logo-ethereum"; export default IconLogoEthereum;