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