import * as TablePrimitive from '@rn-primitives/table'; import * as React from 'react'; import { cn } from '../../lib/utils'; import { TextClassContext } from '../ui/text'; function Table({ className, ...props }: TablePrimitive.RootProps & { ref?: React.RefObject; }) { return ( ); } function TableHeader({ className, ...props }: TablePrimitive.HeaderProps & { ref?: React.RefObject; }) { return ( ); } function TableBody({ className, style, ...props }: TablePrimitive.BodyProps & { ref?: React.RefObject; }) { return ( ); } function TableFooter({ className, ...props }: TablePrimitive.FooterProps & { ref?: React.RefObject; }) { return ( tr]:last:border-b-0', className, )} {...props} /> ); } function TableRow({ className, ...props }: TablePrimitive.RowProps & { ref?: React.RefObject; }) { return ( ); } function TableHead({ className, ...props }: TablePrimitive.HeadProps & { ref?: React.RefObject; }) { return ( ); } function TableCell({ className, ...props }: TablePrimitive.CellProps & { ref?: React.RefObject; }) { return ( ); } export { Table, TableBody, TableCell, TableFooter, TableHead, TableHeader, TableRow, };