({
className,
...props
}: React.ComponentProps<"div">)
| 64 | } |
| 65 | |
| 66 | function AlertDialogHeader({ |
| 67 | className, |
| 68 | ...props |
| 69 | }: React.ComponentProps<"div">) { |
| 70 | return ( |
| 71 | <div |
| 72 | data-slot="alert-dialog-header" |
| 73 | className={cn("flex flex-col gap-2 text-center sm:text-left", className)} |
| 74 | {...props} |
| 75 | /> |
| 76 | ) |
| 77 | } |
| 78 | |
| 79 | function AlertDialogFooter({ |
| 80 | className, |