UNPKG

@scrolia/react-native-reanimated

Version:

A set of reanimated components for Scrolia React Native

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