Function
TableFooter
({ className, ...props }: React.ComponentProps<"tfoot">)
Source from the content-addressed store, hash-verified
| 38 | } |
| 39 | |
| 40 | function 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 | |
| 53 | function TableRow({ className, ...props }: React.ComponentProps<"tr">) { |
| 54 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected