@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 657 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoVue = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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", { fillRule: "evenodd", d: "M1.25 3h8.909l1.84 3.18L13.842 3h8.909L12 21.62zm4.619.559 6.13 10.612L18.129 3.56h-3.969L12 7.299 9.842 3.56z", clipRule: "evenodd" }) }));
};
IconLogoVue.iconName = "logo-vue";
export default IconLogoVue;