react-native-nepali-picker
Version:
Minimalist and modern Nepali-date picker with customization.🌟
17 lines • 517 B
TypeScript
import type { ReactNode } from 'react';
import type { TextStyle } from 'react-native';
export interface CalendarPickerProps {
visible: boolean;
children?: ReactNode;
onClose: () => void;
theme?: 'dark' | 'light';
onDateSelect: (date: string) => void;
language?: 'en' | 'np';
brandColor?: string;
dayTextStyle?: TextStyle;
weekTextStyle?: TextStyle;
titleTextStyle?: TextStyle;
initialDate?: DateString;
}
export type DateString = string;
//# sourceMappingURL=types.d.ts.map