import { Html } from "@granity/three/drei"; import { Chip } from "@granity/ui"; import { FC } from "react"; type WidgetsGizmoProps = { text: string; onClick?: () => void; }; const WidgetsGizmo: FC = ({ text, onClick }) => { return ( } zIndexRange={[0]}> ); }; export default WidgetsGizmo;