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