2022-04-28 14:29:15 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { shortNumberFormat } from 'soapbox/utils/numbers';
|
|
|
|
|
|
|
|
interface ICounter {
|
2022-04-30 21:39:58 -07:00
|
|
|
/** Number this counter should display. */
|
2023-02-15 13:26:27 -08:00
|
|
|
count: number
|
2022-11-03 09:13:45 -07:00
|
|
|
/** Optional max number (ie: N+) */
|
|
|
|
countMax?: number
|
2022-04-28 14:29:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/** A simple counter for notifications, etc. */
|
2022-11-03 09:13:45 -07:00
|
|
|
const Counter: React.FC<ICounter> = ({ count, countMax }) => {
|
2022-04-28 14:29:15 -07:00
|
|
|
return (
|
2023-02-01 14:13:42 -08:00
|
|
|
<span className='flex h-5 min-w-[20px] max-w-[26px] items-center justify-center rounded-full bg-secondary-500 text-xs font-medium text-white ring-2 ring-white dark:ring-gray-800'>
|
2022-11-03 09:13:45 -07:00
|
|
|
{shortNumberFormat(count, countMax)}
|
2022-04-28 14:29:15 -07:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Counter;
|