import { forwardRef } from 'react'; import { twMerge } from 'tailwind-merge'; import type { ComponentPropsWithoutRef } from 'react'; export const Th = forwardRef>(function Th( { className, ...other }, forwardedRef, ) { return ( ); }); export const Td = forwardRef>(function Td( { className, ...other }, forwardedRef, ) { return ( ); }); export const Tr = forwardRef>(function Td( { className, ...other }, forwardRef, ) { return ; }); export const Thead = forwardRef>(function Thead( props, forwardedRef, ) { return ; }); export const Tbody = forwardRef>(function Tbody( { className, ...other }, forwardedRef, ) { return ; }); export const Table = forwardRef>(function Table( { className, ...other }, forwardedRef, ) { return ; }); export const Root = forwardRef>(function Root( { className, ...other }, forwardedRef, ) { return (
); });