react-native-hook-image-slider
Version:
React Native Image Slider UI component built with react hooks
13 lines (12 loc) • 440 B
TypeScript
/// <reference types="react" />
interface Props {
images: string[];
imageHeight?: number;
loadingIndicatorColour?: string;
separatorWidth?: number;
separatorColor?: string;
activeDotColor?: string;
emptyDotColor?: string;
}
export declare const Slider: ({ images, imageHeight, loadingIndicatorColour, separatorWidth, separatorColor, activeDotColor, emptyDotColor }: Props) => JSX.Element;
export default Slider;