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