interface AlertBadgeProps { count: number } export default function AlertBadge({ count }: AlertBadgeProps) { if (count === 0) return null return ( ⚠️ {count} ) }