MCPcopy Create free account
hub / github.com/AutoForgeAI/autoforge / DialogOverlay

Function DialogOverlay

ui/src/components/ui/dialog.tsx:32–46  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof DialogPrimitive.Overlay>)

Source from the content-addressed store, hash-verified

30}
31
32function DialogOverlay({
33 className,
34 ...props
35}: React.ComponentProps<typeof DialogPrimitive.Overlay>) {
36 return (
37 <DialogPrimitive.Overlay
38 data-slot="dialog-overlay"
39 className={cn(
40 "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50",
41 className
42 )}
43 {...props}
44 />
45 )
46}
47
48function DialogContent({
49 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected