@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
31 lines • 640 B
JavaScript
import { c as _c } from "react-compiler-runtime";
import { forwardRef } from "react";
import { jsx as _jsx } from "react/jsx-runtime";
const TableHeader = /*#__PURE__*/forwardRef((t0, ref) => {
const $ = _c(5);
let props;
if ($[0] !== t0) {
({
...props
} = t0);
$[0] = t0;
$[1] = props;
} else {
props = $[1];
}
let t1;
if ($[2] !== props || $[3] !== ref) {
t1 = /*#__PURE__*/_jsx("thead", {
ref: ref,
...props
});
$[2] = props;
$[3] = ref;
$[4] = t1;
} else {
t1 = $[4];
}
return t1;
});
TableHeader.displayName = "Table.Header";
export default TableHeader;