This component no longer exists. It was in skyroc-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 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
skyroc-ui/alert-dialogRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/alert-dialog.jsonSource
1'use client';23import type { ComponentRef } from 'react';4import { forwardRef } from 'react';5import type { Content } from '@radix-ui/react-alert-dialog';6import { useComponentConfig } from '../config-provider/context';7import AlertDialogUI from './AlertDialogUI';8import type { AlertDialogProps } from './types';910const AlertDialog = forwardRef<ComponentRef<typeof Content>, AlertDialogProps>((props, ref) => {11 const config = useComponentConfig('alertDialog');1213 const mergedProps = {14 ...config,15 ...props16 };1718 return (19 <AlertDialogUI20 {...mergedProps}21 ref={ref}22 />23 );24});2526AlertDialog.displayName = 'AlertDialog';2728export default AlertDialog;
What it pulls in
npm packages
Other registry items
