@scrolia/react-native-reanimated
Version:
A set of reanimated components for Scrolia React Native
14 lines • 526 B
TypeScript
import { View, ViewProps } from "react-native";
import * as React from "react";
/** Props for the `ReanimatedThumbX` component. */
type ReanimatedThumbXProps = ViewProps & {
ref?: React.Ref<View>;
};
/**
* Horizontal thumb component based on `react-native-reanimated`.
*
* **This component requires `react-native-reanimated` to be installed.**
*/
declare const ReanimatedThumbX: (props: ReanimatedThumbXProps) => React.JSX.Element;
export { ReanimatedThumbX, type ReanimatedThumbXProps };
//# sourceMappingURL=x.d.ts.map