import React from "react"; import { Button } from "@/components/ui/button"; import { ArrowLeft } from "lucide-react"; import { cn } from "@/lib/utils"; import UrdfViewer from "../UrdfViewer"; import Logo from "@/components/Logo"; interface VisualizerPanelProps { onGoBack: () => void; className?: string; /** Optional content rendered as a column beside the 3D viewer (e.g. a camera panel). */ rightSlot?: React.ReactNode; } const VisualizerPanel: React.FC = ({ onGoBack, className, rightSlot, }) => { return (

Teleoperation

{rightSlot && (
{rightSlot}
)}
); }; export default VisualizerPanel;