MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / AlertDialogOverlay

Function AlertDialogOverlay

components/ui/alert-dialog.tsx:25–39  ·  view source on GitHub ↗
({
  className,
  ...props
}: AlertDialogPrimitive.Backdrop.Props)

Source from the content-addressed store, hash-verified

23}
24
25function 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
41function AlertDialogContent({
42 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected