({
className,
...props
}: React.ComponentProps<"caption">)
| 90 | } |
| 91 | |
| 92 | function TableCaption({ |
| 93 | className, |
| 94 | ...props |
| 95 | }: React.ComponentProps<"caption">) { |
| 96 | return ( |
| 97 | <caption |
| 98 | data-slot="table-caption" |
| 99 | className={cn("text-muted-foreground mt-4 text-sm", className)} |
| 100 | {...props} |
| 101 | /> |
| 102 | ) |
| 103 | } |
| 104 | |
| 105 | export { |
| 106 | Table, |