Function
DialogHeader
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 54 | DialogContent.displayName = DialogPrimitive.Content.displayName |
| 55 | |
| 56 | const DialogHeader = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 57 | <div className={cn("flex flex-col space-y-1.5 text-center sm:text-left", className)} {...props} /> |
| 58 | ) |
| 59 | DialogHeader.displayName = "DialogHeader" |
| 60 | |
| 61 | const DialogFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
Callers
nothing calls this directly
Tested by
no test coverage detected