@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.03 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNumber2Square = (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: "M9.03 16h5.742v-1.21h-3.817c.208-.184.45-.384.707-.598 1.314-1.09 3.066-2.541 3.066-4.132 0-1.518-1.375-2.21-2.684-2.21-1.463 0-2.849.67-2.882 2.397h1.661c.022-.737.43-1.232 1.144-1.232.638 0 1.067.43 1.067 1.111 0 1.403-2.571 3.433-3.78 4.389q-.123.095-.224.176z" }), _jsx("path", { fillRule: "evenodd", d: "M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm2-.5h14a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5", clipRule: "evenodd" })] }));
};
IconNumber2Square.iconName = "number2-square";
export default IconNumber2Square;