Function
DialogHeader
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 174 | DialogContent.displayName = DialogPrimitive.Content.displayName; |
| 175 | |
| 176 | const DialogHeader = ({ |
| 177 | className, |
| 178 | ...props |
| 179 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 180 | <div |
| 181 | className={cn( |
| 182 | "flex flex-col space-y-1.5 text-center sm:text-left", |
| 183 | className |
| 184 | )} |
| 185 | {...props} |
| 186 | /> |
| 187 | ); |
| 188 | DialogHeader.displayName = "DialogHeader"; |
| 189 | |
| 190 | const DialogFooter = ({ |
Callers
nothing calls this directly
Tested by
no test coverage detected