import * as React from "react" import { cn } from "@app/lib/cn" export function TableContainer({ children }: { children: React.ReactNode }) { return
{children}
} const Table = ( { ref, className, ...props }: React.HTMLAttributes & { ref: React.RefObject; } ) => (
) Table.displayName = "Table" const TableHeader = ( { ref, className, ...props }: React.HTMLAttributes & { ref: React.RefObject; } ) => () TableHeader.displayName = "TableHeader" const TableBody = ( { ref, className, ...props }: React.HTMLAttributes & { ref: React.RefObject; } ) => () TableBody.displayName = "TableBody" const TableFooter = ( { ref, className, ...props }: React.HTMLAttributes & { ref: React.RefObject; } ) => (tr]:border-b-0", className )} {...props} />) TableFooter.displayName = "TableFooter" const TableRow = ( { ref, className, ...props }: React.HTMLAttributes & { ref: React.RefObject; } ) => () TableRow.displayName = "TableRow" const TableHead = ( { ref, className, ...props }: React.ThHTMLAttributes & { ref: React.RefObject; } ) => (
) TableHead.displayName = "TableHead" const TableCell = ( { ref, className, ...props }: React.TdHTMLAttributes & { ref: React.RefObject; } ) => () TableCell.displayName = "TableCell" const TableCaption = ( { ref, className, ...props }: React.HTMLAttributes & { ref: React.RefObject; } ) => (
) TableCaption.displayName = "TableCaption" export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, }