Function
CardTitle
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 29 | } |
| 30 | |
| 31 | function CardTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 32 | return ( |
| 33 | <div |
| 34 | data-slot="card-title" |
| 35 | className={cn("leading-none font-semibold", className)} |
| 36 | {...props} |
| 37 | /> |
| 38 | ) |
| 39 | } |
| 40 | |
| 41 | function CardDescription({ className, ...props }: React.ComponentProps<"div">) { |
| 42 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected