// Copyright 2019 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import type { LocalizerType } from '../../types/Util'; export type Props = { unreadCount?: number; conversationId: string; scrollDown: (conversationId: string) => void; i18n: LocalizerType; }; export function ScrollDownButton({ conversationId, unreadCount, i18n, scrollDown, }: Props): JSX.Element { const altText = unreadCount ? i18n('icu:messagesBelow') : i18n('icu:scrollDown'); let badgeText: string | undefined; if (unreadCount) { if (unreadCount < 100) { badgeText = unreadCount.toString(); } else { badgeText = '99+'; } } return (