Function
CardDescription
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 39 | } |
| 40 | |
| 41 | function CardDescription({ className, ...props }: React.ComponentProps<"div">) { |
| 42 | return ( |
| 43 | <div |
| 44 | data-slot="card-description" |
| 45 | className={cn("text-muted-foreground text-sm", className)} |
| 46 | {...props} |
| 47 | /> |
| 48 | ); |
| 49 | } |
| 50 | |
| 51 | function CardAction({ className, ...props }: React.ComponentProps<"div">) { |
| 52 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected