@wolffo/three-fire
Version:
Modern TypeScript volumetric fire effect for Three.js and React Three Fiber
21 lines • 575 B
TypeScript
/**
* @fileoverview React Three Fiber entry point - includes React dependencies
*
* This entry point provides React Three Fiber components and hooks.
* Use this when building React applications with Three.js.
*
* @example
* ```tsx
* import { Fire, useFire } from '@wolffo/three-fire/react'
*
* function App() {
* return (
* <Canvas>
* <Fire texture="/fire.png" color="orange" />
* </Canvas>
* )
* }
* ```
*/
export { FireComponent as Fire, useFire, type FireRef, type FireProps } from './FireComponent';
//# sourceMappingURL=react.d.ts.map