// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import type { ConversationType } from '../../state/ducks/conversations'; import type { LocalizerType } from '../../types/Util'; import { Intl } from '../Intl'; import { SystemMessage } from './SystemMessage'; 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; export const ChangeNumberNotification: React.FC = props => { const { i18n, sender, timestamp } = props; return ( , }} i18n={i18n} />  ยท  } icon="phone" /> ); };