MCPcopy Create free account
hub / github.com/evolify/dumpfun / SheetOverlay

Function SheetOverlay

common/components/ui/sheet.tsx:29–43  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof SheetPrimitive.Overlay>)

Source from the content-addressed store, hash-verified

27}
28
29function SheetOverlay({
30 className,
31 ...props
32}: React.ComponentProps<typeof SheetPrimitive.Overlay>) {
33 return (
34 <SheetPrimitive.Overlay
35 data-slot="sheet-overlay"
36 className={cn(
37 "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",
38 className
39 )}
40 {...props}
41 />
42 )
43}
44
45function SheetContent({
46 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected