Function
TableCell
({ className, ...props }: React.ComponentProps<'td'>)
Source from the content-addressed store, hash-verified
| 79 | } |
| 80 | |
| 81 | function TableCell({ className, ...props }: React.ComponentProps<'td'>) { |
| 82 | return ( |
| 83 | <td |
| 84 | data-slot="table-cell" |
| 85 | className={cn( |
| 86 | 'p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]', |
| 87 | className, |
| 88 | )} |
| 89 | {...props} |
| 90 | /> |
| 91 | ) |
| 92 | } |
| 93 | |
| 94 | function TableCaption({ |
| 95 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected