// Copyright 2019-2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import classnames from 'classnames'; import * as styles from './ProgressBar.scss'; export type Props = Pick, 'className'> & { readonly count: number; readonly total: number; }; export const ProgressBar = React.memo(({ className, count, total }: Props) => (
));