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.
sheet
agileflow-projectquestorg/sheetRemovedComponent
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/sheet.jsonSource
1"use client"23import * as React from "react"4import { Dialog as SheetPrimitive } from "radix-ui"56import { cn } from "@/registry/bases/radix/lib/utils"7import { Button } from "@/registry/bases/radix/ui/button"8import { IconPlaceholder } from "@/app/(create)/components/icon-placeholder"910function Sheet({ ...props }: React.ComponentProps<typeof SheetPrimitive.Root>) {11 return <SheetPrimitive.Root data-slot="sheet" {...props} />12}1314function SheetTrigger({15 ...props16}: React.ComponentProps<typeof SheetPrimitive.Trigger>) {17 return <SheetPrimitive.Trigger data-slot="sheet-trigger" {...props} />18}1920function SheetClose({21 ...props22}: React.ComponentProps<typeof SheetPrimitive.Close>) {23 return <SheetPrimitive.Close data-slot="sheet-close" {...props} />24}2526function SheetPortal({27 ...props28}: React.ComponentProps<typeof SheetPrimitive.Portal>) {29 return <SheetPrimitive.Portal data-slot="sheet-portal" {...props} />30}3132function SheetOverlay({33 className,34 ...props35}: React.ComponentProps<typeof SheetPrimitive.Overlay>) {36 return (37 <SheetPrimitive.Overlay38 data-slot="sheet-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 duration-100 data-ending-style:opacity-0 data-starting-style:opacity-0 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 z-50", className)}40 {...props}41 />42 )43}4445function SheetContent({46 className,47 children,48 side = "right",49 showCloseButton = true,50 ...props51}: React.ComponentProps<typeof SheetPrimitive.Content> & {52 side?: "top" | "right" | "bottom" | "left"53 showCloseButton?: boolean54}) {55 return (56 <SheetPortal>57 <SheetOverlay />58 <SheetPrimitive.Content59 data-slot="sheet-content"60 data-side={side}61// … truncated
What it pulls in
Other registry items
