MCPcopy Create free account
hub / github.com/bytebase/dbhub / TableCaption

Function TableCaption

frontend/src/components/ui/table.tsx:101–115  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<"caption">)

Source from the content-addressed store, hash-verified

99}
100
101function 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
117export {
118 Table,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected