import { Button } from './ui' interface NotificationBadgeButtonProps { unreadCount: number onClick: () => void } export function NotificationBadgeButton({ unreadCount, onClick }: NotificationBadgeButtonProps): React.ReactElement { return ( ) }