Function
AlertDialogHeader
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 47 | AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName |
| 48 | |
| 49 | const AlertDialogHeader = ({ |
| 50 | className, |
| 51 | ...props |
| 52 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 53 | <div |
| 54 | className={cn( |
| 55 | "flex flex-col space-y-2 text-center sm:text-left", |
| 56 | className |
| 57 | )} |
| 58 | {...props} |
| 59 | /> |
| 60 | ) |
| 61 | AlertDialogHeader.displayName = "AlertDialogHeader" |
| 62 | |
| 63 | const AlertDialogFooter = ({ |
Callers
nothing calls this directly
Tested by
no test coverage detected