({ className, ...props }: React.ComponentProps<"div">)
| 80 | } |
| 81 | |
| 82 | function CardFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 83 | return ( |
| 84 | <div |
| 85 | data-slot="card-footer" |
| 86 | className={cn( |
| 87 | "flex items-center rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/card:p-3", |
| 88 | className, |
| 89 | )} |
| 90 | {...props} |
| 91 | /> |
| 92 | ); |
| 93 | } |
| 94 | |
| 95 | export { |
| 96 | Card, |