// Copyright 2025 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ReactNode } from 'react'; import React from 'react'; import { AxoAlertDialog } from '../../../axo/AxoAlertDialog.dom.js'; export function DeleteChatFolderDialog(props: { title: string; description: ReactNode; cancelText: string; deleteText: string; onConfirm: () => void; }): JSX.Element { return ( {props.title} {props.description} {props.cancelText} {props.deleteText} ); }