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 Destructive
uiable/uiable-alert-dialog-destructiveRemovedComponent
Alert Dialog Destructive 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-destructive.jsonSource
1// shadcn2import {3 AlertDialog,4 AlertDialogAction,5 AlertDialogCancel,6 AlertDialogContent,7 AlertDialogDescription,8 AlertDialogFooter,9 AlertDialogHeader,10 AlertDialogMedia,11 AlertDialogTitle,12 AlertDialogTrigger13} from "@/components/ui/alert-dialog";14import { Button } from "@/components/ui/button";1516// assets17import { Trash } from "iconsax-reactjs";1819// ------------------------------ | ALERT DIALOG - DESTRUCTIVE | ------------------------------ //2021export function AlertDialogDestructive() {22 return (23 <AlertDialog>24 <AlertDialogTrigger25 render={<Button variant="destructive">Delete Chat</Button>}26 />27 <AlertDialogContent size="sm">28 <AlertDialogHeader>29 <AlertDialogMedia className="bg-red-500/10 text-red-500 dark:bg-red-500/20 dark:text-red-500">30 <Trash />31 </AlertDialogMedia>32 <AlertDialogTitle>Delete chat?</AlertDialogTitle>33 <AlertDialogDescription>34 This will permanently delete this chat conversation. View{" "}35 <a href="#">Settings</a> delete any memories saved during this chat.36 </AlertDialogDescription>37 </AlertDialogHeader>38 <AlertDialogFooter>39 <AlertDialogCancel variant="outline">Cancel</AlertDialogCancel>40 <AlertDialogAction variant="destructive">Delete</AlertDialogAction>41 </AlertDialogFooter>42 </AlertDialogContent>43 </AlertDialog>44 );45}
What it pulls in
npm packages
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 |
