fluid-pointer-react
Version:
A dependency-free fluid simulation component with WebGL-based physics - supports both vanilla web components and React
11 lines • 564 B
TypeScript
import type { FluidPointerProps, FluidPointerRef } from "./types/react-types.js";
/**
* React FluidPointer Component
*
* A React wrapper around the WebGL-based fluid simulation.
* Provides the same functionality as the web component but with React-native props and lifecycle.
*/
declare const FluidPointer: import("react").ForwardRefExoticComponent<Omit<FluidPointerProps, "ref"> & import("react").RefAttributes<FluidPointerRef>>;
export default FluidPointer;
export type { FluidPointerProps, FluidPointerRef };
//# sourceMappingURL=FluidPointerReact.d.ts.map