This component no longer exists. It was in uiable’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 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.
Alert Dialog Basic
uiable/uiable-alert-dialog-basicRemovedComponent
Alert Dialog Basic variant for component.
Live preview
live · rendered by the registry
Rendered by uiable on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://uiable.com/r/uiable-alert-dialog-basic.jsonSource
1// shadcn2import {3 AlertDialog,4 AlertDialogAction,5 AlertDialogCancel,6 AlertDialogContent,7 AlertDialogDescription,8 AlertDialogFooter,9 AlertDialogHeader,10 AlertDialogTitle,11 AlertDialogTrigger12} from "@/components/ui/alert-dialog";13import { Button } from "@/components/ui/button";1415// ------------------------------ | ALERT DIALOG - BASIC | ------------------------------ //1617export function AlertDialogBasic() {18 return (19 <AlertDialog>20 <AlertDialogTrigger render={<Button>Show Dialog</Button>} />21 <AlertDialogContent>22 <AlertDialogHeader>23 <AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>24 <AlertDialogDescription>25 This action cannot be undone. This will permanently delete your26 account and remove your data from our servers.27 </AlertDialogDescription>28 </AlertDialogHeader>29 <AlertDialogFooter>30 <AlertDialogCancel>Cancel</AlertDialogCancel>31 <AlertDialogAction>Continue</AlertDialogAction>32 </AlertDialogFooter>33 </AlertDialogContent>34 </AlertDialog>35 );36}
What it pulls in
Other registry items
Files it writes
More from uiable
All 747 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | uiable | Components | Free | 2 deps | |
| Accordion Basicaccordion-basic | uiable | Components | Free | no deps | |
| Accordion Bordersaccordion-borders | uiable | Components | Free | no deps | |
| Accordion Cardaccordion-card | uiable | Components | Free | no deps | |
| Accordion Disabledaccordion-disabled | uiable | Components | Free | no deps | |
| Accordion Flushaccordion-flush | uiable | Components | Free | no deps | |
| Accordion Multipleaccordion-multiple | uiable | Components | Free | no deps | |
| Alertalert | uiable | Components | Free | 1 dep |
