({ className, ...props }: React.ComponentProps<"thead">)
| 18 | } |
| 19 | |
| 20 | function TableHeader({ className, ...props }: React.ComponentProps<"thead">) { |
| 21 | return ( |
| 22 | <thead |
| 23 | data-slot="table-header" |
| 24 | className={cn("[&_tr]:border-b", className)} |
| 25 | {...props} |
| 26 | /> |
| 27 | ) |
| 28 | } |
| 29 | |
| 30 | function TableBody({ className, ...props }: React.ComponentProps<"tbody">) { |
| 31 | return ( |