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