import * as React from 'react' import { theme } from '@latitude-data/client' interface Props extends React.TdHTMLAttributes { className?: string } const TableCell = React.forwardRef( ({ className, ...props }, ref) => ( ), ) TableCell.displayName = 'TableCell' export default TableCell