MCPcopy Create free account
hub / github.com/evolify/dumpfun / TableCell

Function TableCell

common/components/ui/table.tsx:79–90  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"td">)

Source from the content-addressed store, hash-verified

77}
78
79function TableCell({ className, ...props }: React.ComponentProps<"td">) {
80 return (
81 <td
82 data-slot="table-cell"
83 className={cn(
84 "p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
85 className
86 )}
87 {...props}
88 />
89 )
90}
91
92function TableCaption({
93 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected