MCPcopy Create free account
hub / github.com/evolify/dumpfun / TableFooter

Function TableFooter

common/components/ui/table.tsx:40–51  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"tfoot">)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected