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