UNPKG

react-native-time-date-picker

Version:

Easy to use time and date picker with lots of options for React Native.

8 lines (7 loc) 227 B
import React from "react"; import { StyleProp, ViewStyle } from "react-native"; export interface CalendarProps { calendarStyle?: StyleProp<ViewStyle>; } declare const Calendar: React.FC<CalendarProps>; export { Calendar };