@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
12 lines (11 loc) • 374 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { forwardRef } from "react";
/**
* Table.Footer component (tfoot element)
* @visibleName Table.Footer
*/ const TableFooter = /*#__PURE__*/ forwardRef(({ ...props }, ref)=>/*#__PURE__*/ _jsx("tfoot", {
ref: ref,
...props
}));
TableFooter.displayName = "Table.Footer";
export default TableFooter;