MCPcopy Create free account
hub / github.com/bytebase/dbhub / TableFooter

Function TableFooter

frontend/src/components/ui/table.tsx:49–60  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"tfoot">)

Source from the content-addressed store, hash-verified

47}
48
49function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">) {
50 return (
51 <tfoot
52 className={cn(
53 "border-t in-data-[slot=frame]:border-none bg-muted/50 in-data-[slot=frame]:bg-transparent font-medium [&>tr]:last:border-b-0 in-data-[slot=frame]:*:[tr]:hover:bg-transparent",
54 className,
55 )}
56 data-slot="table-footer"
57 {...props}
58 />
59 );
60}
61
62function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
63 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected