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