@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.85 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledGrid2PlusRegular = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M7.75 1C8.99219 1 10 2.00734 10 3.25V7.75C10 8.99219 8.99219 10 7.75 10H3.25C2.00734 10 1 8.99219 1 7.75V3.25C1 2.00734 2.00734 1 3.25 1H7.75ZM7.75 3.25H3.25V7.75H7.75V3.25ZM7.75 13C8.99219 13 10 14.0078 10 15.25V19.75C10 20.9922 8.99219 22 7.75 22H3.25C2.00734 22 1 20.9922 1 19.75V15.25C1 14.0078 2.00734 13 3.25 13H7.75ZM7.75 15.25H3.25V19.75H7.75V15.25ZM13 3.25C13 2.00734 14.0078 1 15.25 1H19.75C20.9922 1 22 2.00734 22 3.25V7.75C22 8.99219 20.9922 10 19.75 10H15.25C14.0078 10 13 8.99219 13 7.75V3.25ZM15.25 7.75H19.75V3.25H15.25V7.75ZM17.5 12.25C18.1234 12.25 18.625 12.7516 18.625 13.375V16.375H21.625C22.2484 16.375 22.75 16.8766 22.75 17.5C22.75 18.1234 22.2484 18.625 21.625 18.625H18.625V21.625C18.625 22.2484 18.1234 22.75 17.5 22.75C16.8766 22.75 16.375 22.2484 16.375 21.625V18.625H13.375C12.7516 18.625 12.25 18.1234 12.25 17.5C12.25 16.8766 12.7516 16.375 13.375 16.375H16.375V13.375C16.375 12.7516 16.8766 12.25 17.5 12.25Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledGrid2PlusRegular);
const Grid2PlusRegular = /*#__PURE__*/memo(ForwardRef);
export default Grid2PlusRegular;