import * as TablePrimitive from '@rn-primitives/table'; import * as React from 'react'; import { cn } from '@/lib/utils'; import { TextClassContext } from '@/components/ui/text'; const Table = React.forwardRef( ({ className, ...props }, ref) => ( ) ); Table.displayName = 'Table'; const TableHeader = React.forwardRef( ({ className, ...props }, ref) => ( ) ); TableHeader.displayName = 'TableHeader'; const TableBody = React.forwardRef( ({ className, style, ...props }, ref) => ( ) ); TableBody.displayName = 'TableBody'; const TableFooter = React.forwardRef( ({ 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( ({ className, ...props }, ref) => ( ) ); TableHead.displayName = 'TableHead'; const TableCell = React.forwardRef( ({ className, ...props }, ref) => ( ) ); TableCell.displayName = 'TableCell'; export { Table, TableBody, TableCell, TableFooter, TableHead, TableHeader, TableRow };