UNPKG

react-native-animated-pagination-dots

Version:
14 lines (13 loc) 538 B
import { Animated, ViewStyle } from 'react-native'; export interface ExpandingDotProps { data: Array<Object>; scrollX: Animated.Value; containerStyle: ViewStyle; dotStyle: ViewStyle; inActiveDotOpacity?: number; inActiveDotColor?: string; expandingDotWidth?: number; activeDotColor?: string; } declare const ExpandingDot: ({ scrollX, data, dotStyle, containerStyle, inActiveDotOpacity, inActiveDotColor, expandingDotWidth, activeDotColor, }: ExpandingDotProps) => JSX.Element; export default ExpandingDot;