Function
DialogHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 79 | } |
| 80 | |
| 81 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 82 | return ( |
| 83 | <div |
| 84 | data-slot="dialog-header" |
| 85 | className={cn("flex flex-col gap-2 text-center sm:text-left", className)} |
| 86 | {...props} |
| 87 | /> |
| 88 | ) |
| 89 | } |
| 90 | |
| 91 | function DialogFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 92 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected