Function
CardAction
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 49 | } |
| 50 | |
| 51 | function CardAction({ className, ...props }: React.ComponentProps<"div">) { |
| 52 | return ( |
| 53 | <div |
| 54 | data-slot="card-action" |
| 55 | className={cn( |
| 56 | "col-start-2 row-span-2 row-start-1 self-start justify-self-end", |
| 57 | className |
| 58 | )} |
| 59 | {...props} |
| 60 | /> |
| 61 | ) |
| 62 | } |
| 63 | |
| 64 | function CardContent({ className, ...props }: React.ComponentProps<"div">) { |
| 65 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected