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