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