mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 13:23:13 +00:00
a49707dacb
Port 81f75b1e0e
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
21 lines
593 B
TypeScript
21 lines
593 B
TypeScript
import React from 'react';
|
|
import { Icon } from './icon';
|
|
|
|
const formatNumber = (num: number): number | string => num > 40 ? '40+' : num;
|
|
|
|
type Props = {
|
|
id: string;
|
|
count: number;
|
|
issueBadge: boolean;
|
|
className: string;
|
|
}
|
|
const IconWithBadge: React.FC<Props> = ({ id, count, issueBadge, className }) => (
|
|
<i className='icon-with-badge'>
|
|
<Icon id={id} fixedWidth className={className} />
|
|
{count > 0 && <i className='icon-with-badge__badge'>{formatNumber(count)}</i>}
|
|
{issueBadge && <i className='icon-with-badge__issue-badge' />}
|
|
</i>
|
|
);
|
|
|
|
export default IconWithBadge;
|