Alert dialog5
mynaui/alert-dialog5FreeComponent
A modal dialog that interrupts the user with important content and expects a response.
Install it
npx shadcn@latest add https://mynaui.com/r/alert-dialog5.jsonSource
1import {2 AlertDialog,3 AlertDialogAction,4 AlertDialogContent,5 AlertDialogDescription,6 AlertDialogFooter,7 AlertDialogHeader,8 AlertDialogTitle,9 AlertDialogTrigger,10} from "@/ui/alert-dialog";11import { Button } from "@/ui/button";12import { DangerTriangle } from "@mynaui/icons-react";1314export default function AlertDialog5() {15 return (16 <AlertDialog>17 <AlertDialogTrigger asChild>18 <Button>Show Error Message</Button>19 </AlertDialogTrigger>20 <AlertDialogContent>21 <AlertDialogHeader>22 <div className="flex flex-col gap-2 text-center">23 <div className="mx-auto mb-4 flex size-12 items-center justify-center rounded-full bg-red-50">24 <DangerTriangle className="size-6 text-red-600" />25 </div>26 <AlertDialogTitle>Invalid Email Address</AlertDialogTitle>27 <AlertDialogDescription>28 Please enter a valid email address in the format name@example.com.29 </AlertDialogDescription>30 </div>31 </AlertDialogHeader>32 <AlertDialogFooter className="sm:justify-center">33 <AlertDialogAction>Okay</AlertDialogAction>34 </AlertDialogFooter>35 </AlertDialogContent>36 </AlertDialog>37 );38}
What it pulls in
npm packages
Other registry items
Files it writes
More from mynaui
All 346 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordion1accordion1 | mynaui | Components | Free | no deps · 2 files | |
| Accordion2accordion2 | mynaui | Components | Free | no deps · 2 files | |
| Accordion3accordion3 | mynaui | Components | Free | no deps · 2 files | |
| Accordion4accordion4 | mynaui | Components | Free | 1 dep · 2 files | |
| Accordion5accordion5 | mynaui | Components | Free | 1 dep · 2 files | |
| Alert dialog1alert-dialog1 | mynaui | Components | Free | no deps · 2 files | |
| Alert dialog2alert-dialog2 | mynaui | Components | Free | 1 dep · 2 files | |
| Alert dialog3alert-dialog3 | mynaui | Components | Free | 1 dep · 2 files |
