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