UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.01 kB
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 StyledGrid2Regular = ({ 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: "M0 2.57094C0 1.15076 1.15125 -0.000488281 2.57143 -0.000488281H7.71429C9.13393 -0.000488281 10.2857 1.15076 10.2857 2.57094V7.7138C10.2857 9.13344 9.13393 10.2852 7.71429 10.2852H2.57143C1.15125 10.2852 0 9.13344 0 7.7138V2.57094ZM2.57143 7.7138H7.71429V2.57094H2.57143V7.7138ZM0 16.2852C0 14.8656 1.15125 13.7138 2.57143 13.7138H7.71429C9.13393 13.7138 10.2857 14.8656 10.2857 16.2852V21.4281C10.2857 22.8477 9.13393 23.9995 7.71429 23.9995H2.57143C1.15125 23.9995 0 22.8477 0 21.4281V16.2852ZM2.57143 21.4281H7.71429V16.2852H2.57143V21.4281ZM21.4286 -0.000488281C22.8482 -0.000488281 24 1.15076 24 2.57094V7.7138C24 9.13344 22.8482 10.2852 21.4286 10.2852H16.2857C14.8661 10.2852 13.7143 9.13344 13.7143 7.7138V2.57094C13.7143 1.15076 14.8661 -0.000488281 16.2857 -0.000488281H21.4286ZM21.4286 2.57094H16.2857V7.7138H21.4286V2.57094ZM13.7143 16.2852C13.7143 14.8656 14.8661 13.7138 16.2857 13.7138H21.4286C22.8482 13.7138 24 14.8656 24 16.2852V21.4281C24 22.8477 22.8482 23.9995 21.4286 23.9995H16.2857C14.8661 23.9995 13.7143 22.8477 13.7143 21.4281V16.2852ZM16.2857 21.4281H21.4286V16.2852H16.2857V21.4281Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledGrid2Regular); const Grid2Regular = /*#__PURE__*/memo(ForwardRef); export default Grid2Regular;