Function
CardTitle
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 34 | } |
| 35 | |
| 36 | function CardTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 37 | return ( |
| 38 | <div |
| 39 | data-slot="card-title" |
| 40 | className={cn( |
| 41 | "font-heading text-base leading-snug font-medium group-data-[size=sm]/card:text-sm", |
| 42 | className |
| 43 | )} |
| 44 | {...props} |
| 45 | /> |
| 46 | ) |
| 47 | } |
| 48 | |
| 49 | function CardDescription({ className, ...props }: React.ComponentProps<"div">) { |
| 50 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected