This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-30 15:51:00 -07:00
|
|
|
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;
|
|
|
|
}
|
2023-05-08 18:11:56 -07:00
|
|
|
export const IconWithBadge: React.FC<Props> = ({ id, count, issueBadge, className }) => (
|
2023-04-30 15:51:00 -07:00
|
|
|
<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>
|
|
|
|
);
|