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 560 B
import { jsx as _jsx } from "react/jsx-runtime"; import React from 'react'; import { CaptionStyled } from './tableCaption.styled'; const TableCaptionStandAloneComponent = ({ dataTestId = 'table-caption', children, styles, id, hidden, component, }, ref) => { return (_jsx(CaptionStyled, { ref: ref, "$styles": styles, as: component, "data-hidden": hidden, "data-testid": dataTestId, id: id, children: children })); }; export const TableCaptionStandAlone = React.forwardRef(TableCaptionStandAloneComponent); //# sourceMappingURL=tableCaptionStandAlone.js.map