Extends the Dialog component to display content that complements the main content of the screen.
Default sheet sliding from the right.
import { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle, SheetTrigger, } from "@/components/ui/sheet" import { Button } from "@/components/ui/button" export function SheetDemo() { return ( <Sheet> <SheetTrigger asChild> <Button variant="outline">Open</Button> </SheetTrigger> <SheetContent> <SheetHeader> <SheetTitle>Edit profile</SheetTitle> <SheetDescription> Make changes to your profile here. Click save when you're done. </SheetDescription> </SheetHeader> <div className="grid gap-4 py-4"> <div className="grid grid-cols-4 items-center gap-4"> <Label htmlFor="name" className="text-right"> Name </Label> <Input id="name" value="Pedro Duarte" className="col-span-3" /> </div> <div className="grid grid-cols-4 items-center gap-4"> <Label htmlFor="username" className="text-right"> Username </Label> <Input id="username" value="@peduarte" className="col-span-3" /> </div> </div> <SheetFooter> <Button type="submit">Save changes</Button> </SheetFooter> </SheetContent> </Sheet> ) }
Prop | Type | Default | Description |
---|---|---|---|
side | top | right | bottom | left | right | The side the sheet appears from. |
open | boolean | - | The controlled open state of the sheet. |
onOpenChange | function | - | Function called when the open state changes. |
defaultOpen | boolean | false | The open state of the sheet when it is initially rendered. |