MCPcopy Create free account
hub / github.com/arctic-cli/interface / DialogBackdrop

Function DialogBackdrop

packages/web/components/ui/dialog.tsx:22–36  ·  view source on GitHub ↗
({
  className,
  ...props
}: DialogPrimitive.Backdrop.Props)

Source from the content-addressed store, hash-verified

20}
21
22function DialogBackdrop({
23 className,
24 ...props
25}: DialogPrimitive.Backdrop.Props) {
26 return (
27 <DialogPrimitive.Backdrop
28 className={cn(
29 "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",
30 className,
31 )}
32 data-slot="dialog-backdrop"
33 {...props}
34 />
35 );
36}
37
38function DialogViewport({
39 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected