This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
drawer
agileflow-projectquestorg/drawerRemovedComponent
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/projectquestorg/AgileFlow/main/apps/docs/public/r/styles/radix-nova/drawer.jsonSource
1"use client"23import * as React from "react"4import { Drawer as DrawerPrimitive } from "vaul"56import { cn } from "@/registry/bases/radix/lib/utils"78function Drawer({9 ...props10}: React.ComponentProps<typeof DrawerPrimitive.Root>) {11 return <DrawerPrimitive.Root data-slot="drawer" {...props} />12}1314function DrawerTrigger({15 ...props16}: React.ComponentProps<typeof DrawerPrimitive.Trigger>) {17 return <DrawerPrimitive.Trigger data-slot="drawer-trigger" {...props} />18}1920function DrawerPortal({21 ...props22}: React.ComponentProps<typeof DrawerPrimitive.Portal>) {23 return <DrawerPrimitive.Portal data-slot="drawer-portal" {...props} />24}2526function DrawerClose({27 ...props28}: React.ComponentProps<typeof DrawerPrimitive.Close>) {29 return <DrawerPrimitive.Close data-slot="drawer-close" {...props} />30}3132function DrawerOverlay({33 className,34 ...props35}: React.ComponentProps<typeof DrawerPrimitive.Overlay>) {36 return (37 <DrawerPrimitive.Overlay38 data-slot="drawer-overlay"39 className={cn("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-black/10 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 z-50", className)}40 {...props}41 />42 )43}4445function DrawerContent({46 className,47 children,48 ...props49}: React.ComponentProps<typeof DrawerPrimitive.Content>) {50 return (51 <DrawerPortal data-slot="drawer-portal">52 <DrawerOverlay />53 <DrawerPrimitive.Content54 data-slot="drawer-content"55 className={cn(56// … truncated
What it pulls in
npm packages
