Function
DialogHeader
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 74 | DialogContent.displayName = DialogPrimitive.Content.displayName |
| 75 | |
| 76 | const DialogHeader = ({ |
| 77 | className, |
| 78 | ...props |
| 79 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 80 | <div |
| 81 | className={cn( |
| 82 | "flex flex-col space-y-1.5 text-center sm:text-left", |
| 83 | className, |
| 84 | )} |
| 85 | {...props} |
| 86 | /> |
| 87 | ) |
| 88 | DialogHeader.displayName = "DialogHeader" |
| 89 | |
| 90 | const DialogFooter = ({ |
Callers
nothing calls this directly
Tested by
no test coverage detected