You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
637 B
27 lines
637 B
import type { IconProp } from './icon'; |
|
import { Icon } from './icon'; |
|
|
|
const formatNumber = (num: number): number | string => (num > 40 ? '40+' : num); |
|
|
|
interface Props { |
|
id: string; |
|
icon: IconProp; |
|
count: number; |
|
issueBadge: boolean; |
|
className: string; |
|
} |
|
export const IconWithBadge: React.FC<Props> = ({ |
|
id, |
|
icon, |
|
count, |
|
issueBadge, |
|
className, |
|
}) => ( |
|
<i className='icon-with-badge'> |
|
<Icon id={id} icon={icon} className={className} /> |
|
{count > 0 && ( |
|
<i className='icon-with-badge__badge'>{formatNumber(count)}</i> |
|
)} |
|
{issueBadge && <i className='icon-with-badge__issue-badge' />} |
|
</i> |
|
);
|
|
|