react-native-hook-image-slider
Version:
React Native Image Slider UI component built with react hooks
12 lines (11 loc) • 450 B
TypeScript
import * as React from "react";
interface Props {
images: string[];
imageHeight: number;
loadingIndicatorColor: string;
separatorWidth: number;
separatorColor: string;
setActiveIndex: React.Dispatch<React.SetStateAction<number>>;
}
declare const Content: React.MemoExoticComponent<({ images, setActiveIndex, imageHeight, loadingIndicatorColor, separatorColor, separatorWidth }: Props) => JSX.Element>;
export default Content;