diff --git a/apps/editor/components/tools/shared/cursor-sphere.tsx b/apps/editor/components/tools/shared/cursor-sphere.tsx index 641edbe8..c7578fd3 100644 --- a/apps/editor/components/tools/shared/cursor-sphere.tsx +++ b/apps/editor/components/tools/shared/cursor-sphere.tsx @@ -1,13 +1,14 @@ +import type { ThreeElements } from '@react-three/fiber' import { forwardRef } from 'react' import type { Mesh } from 'three' -interface CursorSphereProps extends Omit { +interface CursorSphereProps extends Omit { color?: string depthWrite?: boolean } export const CursorSphere = forwardRef(function CursorSphere( - { color = '#f1c066', ...props }, + { color = '#f1c066', ...props }, ref, ) { return (