UNPKG

@threlte/xr

Version:

Tools to more easily create VR and AR experiences with Threlte

10 lines (9 loc) 275 B
import { type ColorRepresentation } from 'three'; interface Props { color?: ColorRepresentation; size?: number; thickness?: number; } declare const Cursor: import("svelte").Component<Props, {}, "">; type Cursor = ReturnType<typeof Cursor>; export default Cursor;