import React from 'react'; import type { TableCellProps } from './TableCell'; export type TableCellEmptyProps = Pick; export const TableCellEmpty: React.FC = ({ children, colspan, ...rest }) => { colspan = typeof colspan === 'number' && colspan >= 1 ? colspan : undefined; return ( {children} ); };