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