import React from 'react'; import { cn } from '../lib/utils'; export const Table = React.forwardRef>( ({ className, ...props }, ref) => { return (
); } ); Table.displayName = 'Table'; export const TableHeader = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, ref) => { return ; }); TableHeader.displayName = 'TableHeader'; export const TableBody = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, ref) => { return ; }); TableBody.displayName = 'TableBody'; export const TableRow = React.forwardRef>( ({ className, ...props }, ref) => { return ( ); } ); TableRow.displayName = 'TableRow'; export const TableHead = React.forwardRef< HTMLTableCellElement, React.ThHTMLAttributes >(({ className, ...props }, ref) => { return (
); }); TableHead.displayName = 'TableHead'; export const TableCell = React.forwardRef< HTMLTableCellElement, React.TdHTMLAttributes >(({ className, ...props }, ref) => { return ( ); }); TableCell.displayName = 'TableCell';