scroller-motion
Version:
🛹 Elegant motion scrolling for React
13 lines (12 loc) • 431 B
TypeScript
/// <reference types="react" />
import { ChildrenRef, DivElementProps, MotionValue } from '../../types';
interface Props extends DivElementProps {
childrenRef: ChildrenRef;
disabled?: boolean;
height: number;
width: number;
x: MotionValue;
y: MotionValue;
}
export declare const Wrap: ({ children, childrenRef, disabled, height, style, width, x, y, ...props }: Props) => JSX.Element;
export {};