Function
AlertDialogOverlay
({
className,
...props
}: AlertDialogPrimitive.Backdrop.Props)
Source from the content-addressed store, hash-verified
| 23 | } |
| 24 | |
| 25 | function AlertDialogOverlay({ |
| 26 | className, |
| 27 | ...props |
| 28 | }: AlertDialogPrimitive.Backdrop.Props) { |
| 29 | return ( |
| 30 | <AlertDialogPrimitive.Backdrop |
| 31 | data-slot="alert-dialog-overlay" |
| 32 | className={cn( |
| 33 | "data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 isolate z-50", |
| 34 | className |
| 35 | )} |
| 36 | {...props} |
| 37 | /> |
| 38 | ); |
| 39 | } |
| 40 | |
| 41 | function AlertDialogContent({ |
| 42 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected