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