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

29 lines
746 B
TypeScript
Raw Normal View History

2023-01-03 11:55:46 -08:00
// Copyright 2019 Signal Messenger, LLC
2020-10-30 15:34:04 -05:00
// SPDX-License-Identifier: AGPL-3.0-only
import React, { forwardRef } from 'react';
import type { LocalizerType } from '../../types/Util';
2020-08-24 06:57:00 -07:00
export type Props = {
count: number;
i18n: LocalizerType;
};
export const LastSeenIndicator = forwardRef<HTMLDivElement, Props>(
2022-11-17 16:45:19 -08:00
function LastSeenIndicatorInner({ count, i18n }, ref) {
return (
<div className="module-last-seen-indicator" ref={ref}>
<div className="module-last-seen-indicator__bar" role="separator" />
<div
aria-level={6}
className="module-last-seen-indicator__text"
role="heading"
>
2024-03-07 11:40:16 -08:00
{i18n('icu:unreadMessages', { count })}
</div>
</div>
);
}
);