import { cn } from "@/lib/utils" import { ReactNode } from "react" export function SceneTooltip({ children, isVisible, x, y, }: { children: ReactNode isVisible: boolean x: number y: number }) { return (
{children}
) }