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 = ({ |
| 57 | className, |
| 58 | ...props |
| 59 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 60 | <div |
| 61 | className={cn( |
| 62 | "flex flex-col space-y-1.5 text-center sm:text-left", |
| 63 | className, |
| 64 | )} |
| 65 | {...props} |
| 66 | /> |
| 67 | ); |
| 68 | DialogHeader.displayName = "DialogHeader"; |
| 69 | |
| 70 | const DialogFooter = ({ |
Callers
nothing calls this directly
Tested by
no test coverage detected