UNPKG

react-native-year-month-pickers

Version:

This React-Native component library provides a seamless month and year picker for both Android and iOS platforms.

13 lines (12 loc) 264 B
export type PickerProps = { show: boolean; value: string; primaryColor?: string; animationType?: 'fade' | 'slide' | 'none'; onClose: () => void; onDone: (arg: string) => void; }; export type PrevTextProps = { title: string; onPress: () => void; };