Function
CardContent
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 70 | } |
| 71 | |
| 72 | function CardContent({ className, ...props }: React.ComponentProps<"div">) { |
| 73 | return ( |
| 74 | <div |
| 75 | data-slot="card-content" |
| 76 | className={cn("px-4 group-data-[size=sm]/card:px-3", className)} |
| 77 | {...props} |
| 78 | /> |
| 79 | ); |
| 80 | } |
| 81 | |
| 82 | function CardFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 83 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected