@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 622 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNumber1 = (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: "M13.368 17.122H11.296V9.016C10.638 9.618 9.826 10.052 9 10.346V8.624C10.134 8.232 10.722 7.826 11.604 7H13.368V17.122Z" }) }));
};
IconNumber1.iconName = "number1";
export default IconNumber1;