({ className, ...props }: React.ComponentProps<"div">)
| 89 | } |
| 90 | |
| 91 | function DialogFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 92 | return ( |
| 93 | <div |
| 94 | data-slot="dialog-footer" |
| 95 | className={cn( |
| 96 | "flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", |
| 97 | className |
| 98 | )} |
| 99 | {...props} |
| 100 | /> |
| 101 | ) |
| 102 | } |
| 103 | |
| 104 | function DialogTitle({ |
| 105 | className, |