UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

12 lines (11 loc) 362 B
import { jsx as _jsx } from "react/jsx-runtime"; import { forwardRef } from "react"; /** * Table.Body component (tbody element) * @visibleName Table.Body */ const TableBody = /*#__PURE__*/ forwardRef(({ ...props }, ref)=>/*#__PURE__*/ _jsx("tbody", { ref: ref, ...props })); TableBody.displayName = "Table.Body"; export default TableBody;