// @flow
import React from 'react';
import classnames from 'classnames';
type Props = {
unseenCount: number,
inline: boolean,
};
export default function NotificationHeaderButton(props: Props) {
const { unseenCount, inline = false } = props;
if (unseenCount === 0) {
return null;
}
return (
<span
className={classnames('notification__bubble', {
'notification__bubble--inline': inline,
})}
>
className={classnames('notification__count', {
'notification__bubble--small': unseenCount > 9,
{unseenCount > 20 ? '20+' : unseenCount}
</span>
);