import React from 'react' interface NotificationPanelHeaderProps { unreadCount: number onMarkAllAsRead: () => void onClose: () => void } export function NotificationPanelHeader({ unreadCount, onMarkAllAsRead, onClose, }: NotificationPanelHeaderProps) { return (

Notifications

{unreadCount > 0 && ( )}
) }