@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.29 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 StyledTableLayoutRegular = ({
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: "M21 1.5C22.6547 1.5 24 2.84297 24 4.5V19.5C24 21.1547 22.6547 22.5 21 22.5H3C1.34297 22.5 0 21.1547 0 19.5V4.5C0 2.84297 1.34297 1.5 3 1.5H21ZM21 3.75H3C2.58562 3.75 2.25 4.08562 2.25 4.5V7.5H21.75V4.5C21.75 4.08562 21.4125 3.75 21 3.75ZM3 20.25H6.75V9.75H2.25V19.5C2.25 19.9125 2.58562 20.25 3 20.25ZM9 20.25H21C21.4125 20.25 21.75 19.9125 21.75 19.5V9.75H9V20.25Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledTableLayoutRegular);
const TableLayoutRegular = /*#__PURE__*/memo(ForwardRef);
export default TableLayoutRegular;