import React from 'react'; import { ctw } from '../../../utils/ctw/ctw'; export const TableHead = React.forwardRef< HTMLTableCellElement, React.ThHTMLAttributes >(({ className, children, ...props }, ref) => ( {children} )); TableHead.displayName = 'TableHead';