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

Function TableCell

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

Source from the content-addressed store, hash-verified

86}
87
88function TableCell({ className, ...props }: React.ComponentProps<"td">) {
89 return (
90 <td
91 className={cn(
92 "whitespace-nowrap p-2 align-middle has-[[role=checkbox]]:pe-0 *:[[role=checkbox]]:translate-y-0.5",
93 className,
94 )}
95 data-slot="table-cell"
96 {...props}
97 />
98 );
99}
100
101function TableCaption({
102 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected