({ className, ...props }: React.ComponentProps<"div">)
| 104 | } |
| 105 | |
| 106 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 107 | return ( |
| 108 | <div |
| 109 | data-slot="dialog-header" |
| 110 | className={cn("flex flex-col gap-2 text-center sm:text-left", className)} |
| 111 | {...props} |
| 112 | /> |
| 113 | ); |
| 114 | } |
| 115 | |
| 116 | function DialogFooter({ |
| 117 | className, |