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