// Copyright 2024 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { ConfirmationDialog } from './ConfirmationDialog'; import type { LocalizerType } from '../types/I18N'; import { I18n } from './I18n'; const BACKUP_AND_RESTORE_SUPPORT_PAGE = 'https://support.signal.org/hc/articles/360007059752-Backup-and-Restore-Messages'; export function BackupMediaDownloadCancelConfirmationDialog({ i18n, handleConfirmCancel, handleDialogClose, }: { i18n: LocalizerType; handleConfirmCancel: VoidFunction; handleDialogClose: VoidFunction; }): JSX.Element | null { const learnMoreLink = (parts: Array) => ( {parts} ); return ( ); }