UNPKG

@scrolia/react-native-reanimated

Version:

A set of reanimated components for Scrolia React Native

14 lines 520 B
import { View, ViewProps } from "react-native"; import * as React from "react"; /** Props for the `ReanimatedThumbY` component. */ type ReanimatedThumbYProps = ViewProps & { ref?: React.Ref<View>; }; /** * Vertical thumb component based on `react-native-reanimated`. * * **This component requires `react-native-reanimated` to be installed.** */ declare const ReanimatedThumbY: (props: ReanimatedThumbYProps) => React.JSX.Element; export { ReanimatedThumbY, type ReanimatedThumbYProps }; //# sourceMappingURL=y.d.ts.map