@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.12 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 StyledTableLayoutSolid = ({
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 4.5H3V7.5H21V4.5ZM3 19.5H6V10.5H3V19.5ZM21 10.5H9V19.5H21V10.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledTableLayoutSolid);
const TableLayoutSolid = /*#__PURE__*/memo(ForwardRef);
export default TableLayoutSolid;