// @flow import React from 'react'; import classnames from 'classnames'; type Props = { unseenCount: number, inline: boolean, user: ?User, }; export default function NotificationHeaderButton(props: Props) { const { unseenCount, inline = false, user } = props; const notificationsEnabled = user && user.experimental_ui; if (unseenCount === 0 || !notificationsEnabled) { return null; } return ( 9, })} > {unseenCount > 20 ? '20+' : unseenCount} ); }