Dialog with Two Buttons
blocks/dialog-04FreeBlock
A dialog with two buttons block.
Install it
npx shadcn@latest add https://blocks.so/r/dialog-04.jsonSource
1'use client';23import { useState } from 'react';4import { Button } from '@/components/ui/button';5import {6 Dialog,7 DialogContent,8 DialogDescription,9 DialogFooter,10 DialogHeader,11 DialogTitle,12 DialogTrigger,13} from '@/components/ui/dialog';14import { Input } from '@/components/ui/input';15import { Label } from '@/components/ui/label';1617export default function Dialog03() {18 const [isOpen, setIsOpen] = useState(true);1920 return (21 <Dialog onOpenChange={setIsOpen} open={isOpen}>22 <div className="flex items-center justify-center py-36">23 <DialogTrigger render={<Button />}>Edit Profile</DialogTrigger>24 </div>2526 <DialogContent className="sm:max-w-md">27 <DialogHeader>28 <DialogTitle>Edit Profile</DialogTitle>29 <DialogDescription>30 Make changes to your profile here. Click save when you're done.31 </DialogDescription>32 </DialogHeader>33 <div className="space-y-2">34 <Label className="font-medium text-sm" htmlFor="username">35 Username36 </Label>37 <Input38 id="username"39 name="username"40 placeholder="Your username"41 type="text"42 />43 </div>44 <DialogFooter>45 <Button className="w-full" type="submit">46 Save Changes47 </Button>48 </DialogFooter>49 </DialogContent>50 </Dialog>51 );52}
What it pulls in
Other registry items
Files it writes
More from blocks
All 76 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| AI Chat with Voice Inputai-01 | blocks | Blocks | Free | 1 dep | |
| AI Chat with Model Selectionai-02 | blocks | Blocks | Free | 1 dep | |
| AI Chat Compact Interfaceai-03 | blocks | Blocks | Free | 1 dep | |
| AI Chat with File Attachmentsai-04 | blocks | Blocks | Free | 1 dep | |
| AI Elements Chatai-05 | blocks | Blocks | Free | 2 deps | |
| Command Menu with Groupscommand-menu-01 | blocks | Blocks | Free | 1 dep | |
| Command Menu with Keyboard Shortcutscommand-menu-02 | blocks | Blocks | Free | 1 dep | |
| Command Menu with Documentation Searchcommand-menu-03 | blocks | Blocks | Free | 1 dep |
