signal-desktop/ts/components/conversation/ProfileChangeNotification.tsx
2020-07-30 13:27:44 -07:00

26 lines
751 B
TypeScript

import React from 'react';
import { LocalizerType } from '../../types/Util';
import { ConversationType } from '../../state/ducks/conversations';
import {
getStringForProfileChange,
ProfileNameChangeType,
} from '../../util/getStringForProfileChange';
export interface PropsType {
change: ProfileNameChangeType;
changedContact: ConversationType;
i18n: LocalizerType;
}
export function ProfileChangeNotification(props: PropsType): JSX.Element {
const { change, changedContact, i18n } = props;
const message = getStringForProfileChange(change, changedContact, i18n);
return (
<div className="module-profile-change-notification">
<div className="module-profile-change-notification--icon" />
{message}
</div>
);
}