// Copyright 2023 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { Button, ButtonVariant } from './Button'; import { Modal } from './Modal'; import { Intl } from './Intl'; import { openLinkInWebBrowser } from '../util/openLinkInWebBrowser'; import type { LocalizerType } from '../types/Util'; import { SAFETY_NUMBER_MIGRATION_URL } from '../types/support'; export type PropsType = { i18n: LocalizerType; onClose: () => void; }; function onLearnMore() { openLinkInWebBrowser(SAFETY_NUMBER_MIGRATION_URL); } export function SafetyNumberNotReady({ i18n, onClose, }: PropsType): JSX.Element | null { return (
); }