Function
CardAction
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 57 | } |
| 58 | |
| 59 | function CardAction({ className, ...props }: React.ComponentProps<"div">) { |
| 60 | return ( |
| 61 | <div |
| 62 | data-slot="card-action" |
| 63 | className={cn( |
| 64 | "col-start-2 row-span-2 row-start-1 self-start justify-self-end", |
| 65 | className, |
| 66 | )} |
| 67 | {...props} |
| 68 | /> |
| 69 | ); |
| 70 | } |
| 71 | |
| 72 | function CardContent({ className, ...props }: React.ComponentProps<"div">) { |
| 73 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected