import { cn } from "@/lib/utils"
import { HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, forwardRef } from "react"
const Table = forwardRef>(
({ className, ...props }, ref) => (
),
)
Table.displayName = "Table"
const TableHeader = forwardRef>(
({ className, ...props }, ref) => (
),
)
TableHeader.displayName = "TableHeader"
const TableBody = forwardRef>(
({ className, ...props }, ref) => (
),
)
TableBody.displayName = "TableBody"
const TableFooter = forwardRef>(
({ className, ...props }, ref) => (
tr]:last:border-b-0", className)}
{...props}
/>
),
)
TableFooter.displayName = "TableFooter"
const TableRow = forwardRef>(
({ className, ...props }, ref) => (
),
)
TableRow.displayName = "TableRow"
const TableHead = forwardRef>(
({ className, ...props }, ref) => (
|
),
)
TableHead.displayName = "TableHead"
const TableCell = forwardRef>(
({ className, ...props }, ref) => (
|
),
)
TableCell.displayName = "TableCell"
const TableCaption = forwardRef>(
({ className, ...props }, ref) => (
),
)
TableCaption.displayName = "TableCaption"
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption }