MCPcopy Create free account
hub / github.com/Seanium/ChatMap / Drawer

Function Drawer

components/ui/drawer.tsx:8–16  ·  view source on GitHub ↗
({
  shouldScaleBackground = true,
  ...props
}: React.ComponentProps<typeof DrawerPrimitive.Root>)

Source from the content-addressed store, hash-verified

6import { cn } from "@/lib/utils"
7
8const Drawer = ({
9 shouldScaleBackground = true,
10 ...props
11}: React.ComponentProps<typeof DrawerPrimitive.Root>) => (
12 <DrawerPrimitive.Root
13 shouldScaleBackground={shouldScaleBackground}
14 {...props}
15 />
16)
17Drawer.displayName = "Drawer"
18
19const DrawerTrigger = DrawerPrimitive.Trigger

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected