({ className, ...props }: React.ComponentProps<"div">)
| 80 | } |
| 81 | |
| 82 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 83 | return ( |
| 84 | <div |
| 85 | className={cn("flex flex-col gap-2 text-center sm:text-left", className)} |
| 86 | data-slot="dialog-header" |
| 87 | {...props} |
| 88 | /> |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | function DialogFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 93 | return ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…