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