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