signal-desktop/ts/components/conversation/LastSeenIndicator.tsx

23 lines
544 B
TypeScript
Raw Normal View History

import React from 'react';
import { LocalizerType } from '../../types/Util';
2020-08-24 13:57:00 +00:00
export type Props = {
count: number;
i18n: LocalizerType;
};
2020-09-14 19:51:27 +00:00
export const LastSeenIndicator = ({ count, i18n }: Props): JSX.Element => {
const message =
count === 1
? i18n('unreadMessage')
: i18n('unreadMessages', [String(count)]);
2020-09-14 19:51:27 +00:00
return (
<div className="module-last-seen-indicator">
<div className="module-last-seen-indicator__bar" />
<div className="module-last-seen-indicator__text">{message}</div>
</div>
);
};