import React from 'react'; import { cn } from '../../utils/cn'; export interface TableHeadProps extends React.HTMLAttributes { /** * Enables sticky positioning of the header */ sticky?: boolean; /** * Additional class names */ className?: string; } export const TableHead = React.forwardRef< HTMLTableSectionElement, TableHeadProps >(({ children, sticky, className, ...props }, ref) => { return ( {children} ); }); TableHead.displayName = 'TableHead'; export default TableHead;