Hiyve Components - v1.0.0
    Preparing search index...

    Variable DeleteConfirmDialogConst

    DeleteConfirmDialog: NamedExoticComponent<DeleteConfirmDialogProps> = ...

    DeleteConfirmDialog displays a confirmation prompt before deleting a stored room.

    Shows the room name in the warning message and respects entity label customization (e.g., "Delete this Workspace?" instead of "Delete this Room?"). The delete button shows a loading spinner while the deletion is in progress.

    <DeleteConfirmDialog
    open={isOpen}
    room={roomToDelete}
    onClose={() => setIsOpen(false)}
    onConfirm={async () => {
    await deleteRoom(roomToDelete.alias);
    setIsOpen(false);
    }}
    />