"use client"; import { Badge } from "@/components/ui/badge"; interface LobsterTooltipProps { city: string; country: string; lobsterCount: number; weight: number; } export function LobsterTooltip({ city, country, lobsterCount, weight }: LobsterTooltipProps) { return (
🦞

{city}

{country}

{lobsterCount} active weight: {weight.toFixed(1)}
); }