MCPcopy
hub / github.com/tinyauthapp/tinyauth / CardHeader

Function CardHeader

frontend/src/components/ui/card.tsx:18–29  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

16}
17
18function CardHeader({ className, ...props }: React.ComponentProps<"div">) {
19 return (
20 <div
21 data-slot="card-header"
22 className={cn(
23 "@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6",
24 className,
25 )}
26 {...props}
27 />
28 );
29}
30
31function CardTitle({ className, ...props }: React.ComponentProps<"div">) {
32 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected