"use client"; import { useTranslations } from "next-intl"; import { Badge } from "@/components/ui/badge"; interface ClawTooltipProps { city: string; country: string; clawCount: number; weight: number; } export function ClawTooltip({ city, country, clawCount, weight }: ClawTooltipProps) { const t = useTranslations("continentMap"); return (
🦞

{city}

{country}

{t("active", { count: clawCount })} {t("weight", { value: weight.toFixed(1) })}
); }