@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 824 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconPhotoGrid = (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: "M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm9 1.5h-4v4h4zm0 5.5h-4v4h4zM8.5 8.5v-4H5a.5.5 0 0 0-.5.5v3.5zm-4 1.5h4v4h-4zm11 0h4v4h-4zm4-1.5h-4v-4H19a.5.5 0 0 1 .5.5zm-11 7h-4V19a.5.5 0 0 0 .5.5h3.5zm5.5 0h-4v4h4zm1.5 4v-4h4V19a.5.5 0 0 1-.5.5z", clipRule: "evenodd" }) }));
};
IconPhotoGrid.iconName = "photo-grid";
export default IconPhotoGrid;