import { HTMLAttributes, PropsWithChildren } from 'react'; import { TableCellProps } from './interface'; import { StyledTableCell } from './styles'; export const TableCell = ({ children, ...props }: PropsWithChildren< TableCellProps & HTMLAttributes >) => { return {children}; }; export default TableCell;