import { forwardRef } from 'react'; import { StyledTableHead } from './Table.style'; export interface TableHeadProps extends React.HTMLProps { children: React.ReactNode; } export const TableHead = forwardRef((props, ref) => { const { children, ...otherProps } = props; return ( {children} ); });