import * as React from 'react'; import { cn } from '@/lib/utils'; const Table = React.forwardRef>( ({ className, ...props }, ref) => (
), ); 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) => ( // Strip only the bottom border on the last row (the visual table-divider). // The shorter `border-0` form also nuked left/right borders, which broke // the colored left-accent (e.g. mooring-letter tone in berth-list) — that // accent is added via row className and counts on the left border surviving. )); TableBody.displayName = 'TableBody'; const TableFooter = React.forwardRef< HTMLTableSectionElement, React.HTMLAttributes >(({ className, ...props }, ref) => ( tr]: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 TableCaption = React.forwardRef< HTMLTableCaptionElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)); TableCaption.displayName = 'TableCaption'; export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption };