UNPKG

@isaac_ua/drei-html-fix

Version:

drei-html-fix is a React utility that resolves alignment and offset issues with the Html component from @react-three/drei

11 lines (8 loc) 231 B
import { CanvasProps } from '@react-three/fiber'; import { FC, ReactNode } from 'react'; type Props = { children: ReactNode; canvasProps?: CanvasProps; }; declare const CanvasWrapper: FC<Props>; export { CanvasWrapper };