Function
CommandDialogBackdrop
({
className,
...props
}: CommandDialogPrimitive.Backdrop.Props)
Source from the content-addressed store, hash-verified
| 36 | } |
| 37 | |
| 38 | function CommandDialogBackdrop({ |
| 39 | className, |
| 40 | ...props |
| 41 | }: CommandDialogPrimitive.Backdrop.Props) { |
| 42 | return ( |
| 43 | <CommandDialogPrimitive.Backdrop |
| 44 | className={cn( |
| 45 | "fixed inset-0 z-50 bg-black/32 backdrop-blur-sm transition-all duration-200 data-ending-style:opacity-0 data-starting-style:opacity-0", |
| 46 | className, |
| 47 | )} |
| 48 | data-slot="command-dialog-backdrop" |
| 49 | {...props} |
| 50 | /> |
| 51 | ); |
| 52 | } |
| 53 | |
| 54 | function CommandDialogViewport({ |
| 55 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected