import { forwardRef, type HTMLAttributes, type TdHTMLAttributes, type ThHTMLAttributes } from 'react'; import { cn } from '../../lib/cn'; export const Table = forwardRef>( ({ className, ...props }, ref) => (
), ); Table.displayName = 'Table'; export function THead({ className, ...props }: HTMLAttributes) { return ; } export function TBody({ className, ...props }: HTMLAttributes) { return ; } export function TR({ className, ...props }: HTMLAttributes) { return ; } export function TH({ className, ...props }: ThHTMLAttributes) { return
; } export function TD({ className, ...props }: TdHTMLAttributes) { return ; }