UNPKG

@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 507 B
import { jsx as _jsx } from "react/jsx-runtime"; import React from 'react'; import { TFootStyled } from './tableFoot.styled'; const TableFootStandAloneComponent = ({ dataTestId = 'table-foot', children, styles, id, component, }, ref) => { return (_jsx(TFootStyled, { ref: ref, "$styles": styles, as: component, "data-testid": dataTestId, id: id, children: children })); }; export const TableFootStandAlone = React.forwardRef(TableFootStandAloneComponent); //# sourceMappingURL=tableFootStandAlone.js.map