Function
TableHeader
({ className, ...props }: React.ComponentProps<"thead">)
Source from the content-addressed store, hash-verified
| 21 | } |
| 22 | |
| 23 | function TableHeader({ className, ...props }: React.ComponentProps<"thead">) { |
| 24 | return ( |
| 25 | <thead |
| 26 | className={cn( |
| 27 | "[&_tr]:border-b in-data-[slot=frame]:**:[th]:h-9 in-data-[slot=frame]:*:[tr]:border-none in-data-[slot=frame]:*:[tr]:hover:bg-transparent", |
| 28 | className, |
| 29 | )} |
| 30 | data-slot="table-header" |
| 31 | {...props} |
| 32 | /> |
| 33 | ); |
| 34 | } |
| 35 | |
| 36 | function TableBody({ className, ...props }: React.ComponentProps<"tbody">) { |
| 37 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected