@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
8 lines • 594 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { THeadStyled } from './tableHead.styled';
const TableHeadStandAloneComponent = ({ dataTestId = 'table-head', children, styles, id, sticky, hidden, component, }, ref) => {
return (_jsx(THeadStyled, { ref: ref, "data-table-head": true, "$styles": styles, as: component, "data-hidden": hidden, "data-sticky": sticky, "data-testid": dataTestId, id: id, children: children }));
};
export const TableHeadStandAlone = React.forwardRef(TableHeadStandAloneComponent);
//# sourceMappingURL=tableHeadStandAlone.js.map