@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 650 B
JavaScript
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", { 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: "M5.094 12.157 12 1l6.906 11.157L12 16.108z" }), _jsx("path", { d: "m12 23-6.828-9.512L12 17.48l6.828-3.992z" })] }));
};
IconLogoEthereum.iconName = "logo-ethereum";
export default IconLogoEthereum;