@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
14 lines • 925 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TableHeadStandAlone = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
const react_1 = __importDefault(require("react"));
const tableHead_styled_1 = require("./tableHead.styled");
const TableHeadStandAloneComponent = ({ dataTestId = 'table-head', children, styles, id, sticky, hidden, component, }, ref) => {
return ((0, jsx_runtime_1.jsx)(tableHead_styled_1.THeadStyled, { ref: ref, "data-table-head": true, "$styles": styles, as: component, "data-hidden": hidden, "data-sticky": sticky, "data-testid": dataTestId, id: id, children: children }));
};
exports.TableHeadStandAlone = react_1.default.forwardRef(TableHeadStandAloneComponent);
//# sourceMappingURL=tableHeadStandAlone.js.map