import React from 'react' interface NotificationBadgeButtonProps { unreadCount: number onClick: () => void } export function NotificationBadgeButton({ unreadCount, onClick }: NotificationBadgeButtonProps) { return ( ) }