({ className, ...props }: React.ComponentProps<"div">)
| 89 | } |
| 90 | |
| 91 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 92 | return ( |
| 93 | <div |
| 94 | data-slot='dialog-header' |
| 95 | className={cn("flex flex-col gap-2 text-center sm:text-left", className)} |
| 96 | {...props} |
| 97 | /> |
| 98 | ); |
| 99 | } |
| 100 | |
| 101 | function DialogFooter({ |
| 102 | className, |