Function
CardHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 16 | } |
| 17 | |
| 18 | function 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 | |
| 31 | function CardTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 32 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected