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