import * as React from 'react'; import { cn } from '~/utils'; interface TableProps extends React.HTMLAttributes { unwrapped?: boolean; } const Table = React.forwardRef( ({ className, unwrapped = false, ...props }, ref) => { const tableElement = ( ); if (unwrapped) { return tableElement; } return
{tableElement}
; }, ); Table.displayName = 'Table'; const TableHeader = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, ref) => ( )); TableHeader.displayName = 'TableHeader'; const TableBody = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, ref) => ( )); TableBody.displayName = 'TableBody'; const TableFooter = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, ref) => ( tr]:last:border-b-0', className)} {...props} /> )); TableFooter.displayName = 'TableFooter'; const TableRow = React.forwardRef>( ({ className, ...props }, ref) => ( ), ); TableRow.displayName = 'TableRow'; const TableHead = React.forwardRef< HTMLTableCellElement, React.ThHTMLAttributes >(({ className, ...props }, ref) => (
)); TableHead.displayName = 'TableHead'; const TableCell = React.forwardRef< HTMLTableCellElement, React.TdHTMLAttributes >(({ className, ...props }, ref) => ( )); TableCell.displayName = 'TableCell'; const TableRowHeader = React.forwardRef< HTMLTableCellElement, React.ThHTMLAttributes >(({ className, ...props }, ref) => ( )); TableRowHeader.displayName = 'TableRowHeader'; const TableCaption = React.forwardRef< HTMLTableCaptionElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)); TableCaption.displayName = 'TableCaption'; export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableRowHeader, TableCaption, };