// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { ConversationType } from '../../state/ducks/conversations'; import { LocalizerType } from '../../types/Util'; import { Intl } from '../Intl'; import { Timestamp } from './Timestamp'; import { Emojify } from './Emojify'; export type PropsData = { sender: ConversationType; timestamp: number; }; export type PropsHousekeeping = { i18n: LocalizerType; }; export type Props = PropsData & PropsHousekeeping; const CSS_MODULE = 'module-change-number-notification'; export const ChangeNumberNotification: React.FC = props => { const { i18n, sender, timestamp } = props; return (
, }} i18n={i18n} />  ยท 
); };