Function
CardDescription
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 47 | } |
| 48 | |
| 49 | function CardDescription({ className, ...props }: React.ComponentProps<"div">) { |
| 50 | return ( |
| 51 | <div |
| 52 | data-slot="card-description" |
| 53 | className={cn("text-sm text-muted-foreground", className)} |
| 54 | {...props} |
| 55 | /> |
| 56 | ); |
| 57 | } |
| 58 | |
| 59 | function CardAction({ className, ...props }: React.ComponentProps<"div">) { |
| 60 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected