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