|
1
|
'use client'; |
|
2
|
|
|
3
|
export default function NotificationBell({count}) { |
|
4
|
return ( |
|
5
|
<button className="notification-bell" aria-label="Notifications"> |
|
6
|
<span className="bell-icon">🔔</span> |
|
7
|
{count > 0 && <span className="notification-badge">{count}</span>} |
|
8
|
</button> |
|
9
|
); |
|
10
|
} |