Function
DialogHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 96 | } |
| 97 | |
| 98 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 99 | return ( |
| 100 | <div |
| 101 | className={cn( |
| 102 | "flex flex-col gap-2 p-6 in-[[data-slot=dialog-popup]:has([data-slot=dialog-panel])]:pb-3 max-sm:pb-4", |
| 103 | className, |
| 104 | )} |
| 105 | data-slot="dialog-header" |
| 106 | {...props} |
| 107 | /> |
| 108 | ); |
| 109 | } |
| 110 | |
| 111 | function DialogFooter({ |
| 112 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected