UNPKG

@aomi/react-native-components

Version:
16 lines (15 loc) 415 B
/** * @author 田尘殇Sean(sean.snow@live.com) create at 2017/11/4 */ import { StyleProp, ViewStyle } from 'react-native'; import { ReactNode } from 'react'; export interface Props { showDot?: boolean; autoPlay?: boolean; containerStyle?: StyleProp<ViewStyle>; duration?: number; style?: StyleProp<ViewStyle>; children?: ReactNode; inactiveColor?: string; activeColor?: string; }