"use client"; import { cn } from "@/lib/utils"; interface NotificationBadgeProps { count: number; className?: string; } export function NotificationBadge({ count, className }: NotificationBadgeProps) { if (count <= 0) return null; return ( {count > 99 ? "99+" : count} ); }