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