import { Button } from './ui' import { useNotifications } from '@/hooks/useNotifications' interface NotificationBadgeProps { userPubkey: string | null onClick?: () => void } export function NotificationBadge({ userPubkey, onClick }: NotificationBadgeProps): React.ReactElement | null { const { unreadCount } = useNotifications(userPubkey) if (!userPubkey || unreadCount === 0) { return null } return ( ) }