({ className, ...props }: React.ComponentProps<"div">)
| 59 | } |
| 60 | |
| 61 | function CardContent({ className, ...props }: React.ComponentProps<"div">) { |
| 62 | return ( |
| 63 | <div data-slot="card-content" className={cn("", className)} {...props} /> |
| 64 | ) |
| 65 | } |
| 66 | |
| 67 | function CardFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 68 | return ( |