Function
DialogHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 94 | } |
| 95 | |
| 96 | function DialogHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 97 | return ( |
| 98 | <div |
| 99 | data-slot="dialog-header" |
| 100 | className={cn("flex flex-col gap-2", className)} |
| 101 | {...props} |
| 102 | /> |
| 103 | ) |
| 104 | } |
| 105 | |
| 106 | function DialogFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 107 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected