@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 • 838 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TableBodyStandAlone = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
const react_1 = __importDefault(require("react"));
const tableBody_styled_1 = require("./tableBody.styled");
const TableBodyStandAloneComponent = ({ dataTestId = 'table-body', children, styles, id, component, }, ref) => {
return ((0, jsx_runtime_1.jsx)(tableBody_styled_1.TBodyStyled, { ref: ref, "$styles": styles, as: component, "data-testid": dataTestId, id: id, children: children }));
};
exports.TableBodyStandAlone = react_1.default.forwardRef(TableBodyStandAloneComponent);
//# sourceMappingURL=tableBodyStandAlone.js.map