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