--- title: Sheet description: Extends the Dialog component to display content that complements the main content of the screen. base: base component: true links: doc: https://base-ui.com/react/components/dialog api: https://base-ui.com/react/components/dialog#api-reference --- ## Installation Command Manual ```bash npx shadcn@latest add sheet ``` Install the following dependencies: ```bash npm install @base-ui/react ``` Copy and paste the following code into your project. Update the import paths to match your project setup. ## Usage ```tsx showLineNumbers import { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, } from "@/components/ui/sheet" ``` ```tsx showLineNumbers Open Are you absolutely sure? This action cannot be undone. ``` ## Examples ### Side Use the `side` prop on `SheetContent` to set the edge of the screen where the sheet appears. Values are `top`, `right`, `bottom`, or `left`. ### No Close Button Use `showCloseButton={false}` on `SheetContent` to hide the close button. ## RTL To enable RTL support in shadcn/ui, see the [RTL configuration guide](/docs/rtl). ## API Reference See the [Base UI Dialog](https://base-ui.com/react/components/dialog#api-reference) documentation.