// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import type { LocalizerType } from '../types/Util.js';
import { Modal } from './Modal.js';
import { Button, ButtonVariant } from './Button.js';
export type PropsType = {
i18n: LocalizerType;
onCancelDonation: () => unknown;
onRetryDonation: () => unknown;
};
export function DonationInterruptedModal(props: PropsType): JSX.Element {
const { i18n, onCancelDonation, onRetryDonation } = props;
const footer = (
<>
>
);
return (
{i18n('icu:Donations__DonationInterrupted__Description')}
);
}