"use client"; import { RotateCw, ZoomIn, ZoomOut } from "lucide-react"; import { useTranslations } from "next-intl"; interface GlobeControlsProps { onResetView: () => void; onZoomIn: () => void; onZoomOut: () => void; } export function GlobeControls({ onResetView, onZoomIn, onZoomOut }: GlobeControlsProps) { const t = useTranslations("globeControls"); return (
); }