({ className, ...props }: React.ComponentProps<"div">)
| 72 | } |
| 73 | |
| 74 | function CardFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 75 | return ( |
| 76 | <div |
| 77 | data-slot="card-footer" |
| 78 | className={cn("flex items-center px-6 [.border-t]:pt-6 mt-2", className)} |
| 79 | {...props} |
| 80 | /> |
| 81 | ); |
| 82 | } |
| 83 | |
| 84 | export { |
| 85 | Card, |