MCPcopy Create free account
hub / github.com/TanStack/ai / TableFooter

Function TableFooter

examples/ts-react-search/src/components/ui/table.tsx:42–53  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<'tfoot'>)

Source from the content-addressed store, hash-verified

40}
41
42function TableFooter({ className, ...props }: React.ComponentProps<'tfoot'>) {
43 return (
44 <tfoot
45 data-slot="table-footer"
46 className={cn(
47 'bg-muted/50 border-t font-medium [&>tr]:last:border-b-0',
48 className,
49 )}
50 {...props}
51 />
52 )
53}
54
55function TableRow({ className, ...props }: React.ComponentProps<'tr'>) {
56 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.85

Tested by

no test coverage detected