UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.08 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconPhotoGridFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("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: "M8 14.5V9.5L3 9.5V14.5L8 14.5Z" }), _jsx("path", { d: "M3 16V19C3 20.1046 3.89543 21 5 21H8L8 16L3 16Z" }), _jsx("path", { d: "M9.5 21H14.5V16H9.5L9.5 21Z" }), _jsx("path", { d: "M16 21H19C20.1046 21 21 20.1046 21 19V16L16 16V21Z" }), _jsx("path", { d: "M21 14.5V9.5L16 9.5V14.5L21 14.5Z" }), _jsx("path", { d: "M21 8V5C21 3.89543 20.1046 3 19 3H16V8L21 8Z" }), _jsx("path", { d: "M14.5 3H9.5V8L14.5 8V3Z" }), _jsx("path", { d: "M8 3H5C3.89543 3 3 3.89543 3 5V8L8 8V3Z" }), _jsx("path", { d: "M9.5 14.5V9.5L14.5 9.5V14.5H9.5Z" })] })); }; IconPhotoGridFilled.iconName = "photo-grid--filled"; export default IconPhotoGridFilled;