MCPcopy Create free account
hub / github.com/bytebase/dbhub / CommandDialogBackdrop

Function CommandDialogBackdrop

frontend/src/components/ui/command.tsx:38–52  ·  view source on GitHub ↗
({
  className,
  ...props
}: CommandDialogPrimitive.Backdrop.Props)

Source from the content-addressed store, hash-verified

36}
37
38function 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
54function CommandDialogViewport({
55 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected