Function
TableCell
({ className, ...props }: React.ComponentProps<"td">)
Source from the content-addressed store, hash-verified
| 86 | } |
| 87 | |
| 88 | function TableCell({ className, ...props }: React.ComponentProps<"td">) { |
| 89 | return ( |
| 90 | <td |
| 91 | className={cn( |
| 92 | "whitespace-nowrap p-2 align-middle has-[[role=checkbox]]:pe-0 *:[[role=checkbox]]:translate-y-0.5", |
| 93 | className, |
| 94 | )} |
| 95 | data-slot="table-cell" |
| 96 | {...props} |
| 97 | /> |
| 98 | ); |
| 99 | } |
| 100 | |
| 101 | function TableCaption({ |
| 102 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected