Function
TableCaption
({
className,
...props
}: React.ComponentProps<"caption">)
Source from the content-addressed store, hash-verified
| 99 | } |
| 100 | |
| 101 | function TableCaption({ |
| 102 | className, |
| 103 | ...props |
| 104 | }: React.ComponentProps<"caption">) { |
| 105 | return ( |
| 106 | <caption |
| 107 | className={cn( |
| 108 | "in-data-[slot=frame]:my-4 mt-4 text-muted-foreground text-sm", |
| 109 | className, |
| 110 | )} |
| 111 | data-slot="table-caption" |
| 112 | {...props} |
| 113 | /> |
| 114 | ); |
| 115 | } |
| 116 | |
| 117 | export { |
| 118 | Table, |
Callers
nothing calls this directly
Tested by
no test coverage detected