@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 805 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNumber7SquareFilled = (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", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 3C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5ZM14.7177 9.33412L11.8137 16.0001H9.92171L13.1117 9.27912H9.07471V8.04712H14.7177V9.33412Z" }) }));
};
IconNumber7SquareFilled.iconName = "number7-square--filled";
export default IconNumber7SquareFilled;