Function
SheetBackdrop
({ className, ...props }: SheetPrimitive.Backdrop.Props)
Source from the content-addressed store, hash-verified
| 19 | } |
| 20 | |
| 21 | function SheetBackdrop({ className, ...props }: SheetPrimitive.Backdrop.Props) { |
| 22 | return ( |
| 23 | <SheetPrimitive.Backdrop |
| 24 | className={cn( |
| 25 | "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", |
| 26 | className, |
| 27 | )} |
| 28 | data-slot="sheet-backdrop" |
| 29 | {...props} |
| 30 | /> |
| 31 | ); |
| 32 | } |
| 33 | |
| 34 | function SheetViewport({ |
| 35 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected