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 = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 47 | <div className={cn("flex flex-col space-y-2 text-center sm:text-left", className)} {...props} /> |
| 48 | ); |
| 49 | AlertDialogHeader.displayName = "AlertDialogHeader"; |
| 50 | |
| 51 | const AlertDialogFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
Callers
nothing calls this directly
Tested by
no test coverage detected