({ className, ...props }: React.ComponentProps<"div">)
| 95 | } |
| 96 | |
| 97 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 98 | return ( |
| 99 | <div |
| 100 | data-slot="dialog-header" |
| 101 | className={cn("flex flex-col gap-2 text-center sm:text-left", className)} |
| 102 | {...props} |
| 103 | /> |
| 104 | ); |
| 105 | } |
| 106 | |
| 107 | function DialogFooter({ |
| 108 | className, |