({ className, ...props }: React.ComponentProps<"div">)
| 81 | } |
| 82 | |
| 83 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 84 | return ( |
| 85 | <div |
| 86 | data-slot="dialog-header" |
| 87 | className={cn("gap-1 text-left flex flex-col", className)} |
| 88 | {...props} |
| 89 | /> |
| 90 | ); |
| 91 | } |
| 92 | |
| 93 | function DialogFooter({ |
| 94 | className, |