@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 592 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNumber7 = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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: "M15.5911 8.57697L11.8951 17.061H9.48706L13.5471 8.50697H8.40906V6.93896H15.5911V8.57697Z" }) }));
};
IconNumber7.iconName = "number7";
export default IconNumber7;