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