{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "alert-dialog-06",
  "title": "Customized Footer Alert Dialog",
  "description": "An alert dialog with customized footer",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "alert-dialog",
    "button"
  ],
  "files": [
    {
      "path": "src/components/customized/alert-dialog/alert-dialog-06.tsx",
      "content": "import { ExternalLink, OctagonAlert, Trash } from \"lucide-react\";\nimport {\n  AlertDialog,\n  AlertDialogAction,\n  AlertDialogCancel,\n  AlertDialogContent,\n  AlertDialogDescription,\n  AlertDialogFooter,\n  AlertDialogHeader,\n  AlertDialogTitle,\n  AlertDialogTrigger,\n} from \"@/registry/ui/alert-dialog\";\nimport { Button } from \"@/registry/ui/button\";\n\nexport default function AlertDialogWithCustomizedFooter() {\n  return (\n    <AlertDialog>\n      <AlertDialogTrigger asChild>\n        <Button variant=\"outline\">Show Dialog</Button>\n      </AlertDialogTrigger>\n      <AlertDialogContent className=\"max-w-md!\">\n        <AlertDialogHeader className=\"pb-4\">\n          <AlertDialogTitle>\n            <div className=\"mx-auto mb-4 flex h-9 w-9 items-center justify-center rounded-full bg-destructive/10 sm:mx-0\">\n              <OctagonAlert className=\"h-5 w-5 text-destructive\" />\n            </div>\n            Are you absolutely sure?\n          </AlertDialogTitle>\n          <AlertDialogDescription className=\"text-[15px]\">\n            This action cannot be undone. This will permanently delete your\n            account and remove your data from our servers.\n          </AlertDialogDescription>\n        </AlertDialogHeader>\n        <AlertDialogFooter className=\"border-t\">\n          <Button\n            className=\"mr-auto -ml-3 text-muted-foreground\"\n            variant=\"link\"\n          >\n            Learn more <ExternalLink />\n          </Button>\n          <AlertDialogCancel variant=\"ghost\">Cancel</AlertDialogCancel>\n          <AlertDialogAction variant=\"destructive\">\n            <Trash />\n            Continue\n          </AlertDialogAction>\n        </AlertDialogFooter>\n      </AlertDialogContent>\n    </AlertDialog>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}