Function
TableRow
({ className, ...props }: React.ComponentProps<'tr'>)
Source from the content-addressed store, hash-verified
| 53 | } |
| 54 | |
| 55 | function TableRow({ className, ...props }: React.ComponentProps<'tr'>) { |
| 56 | return ( |
| 57 | <tr |
| 58 | data-slot="table-row" |
| 59 | className={cn( |
| 60 | 'hover:bg-muted/50 data-[state=selected]:bg-muted border-b transition-colors', |
| 61 | className, |
| 62 | )} |
| 63 | {...props} |
| 64 | /> |
| 65 | ) |
| 66 | } |
| 67 | |
| 68 | function TableHead({ className, ...props }: React.ComponentProps<'th'>) { |
| 69 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected