react-native-easy-calendar
Version:
Customizable, easy-to-use, performant calendar components for React Native
14 lines (11 loc) • 783 B
text/typescript
import type { Props as ArrowProps } from '../Components/Arrow';
import type { Props as TitleProps } from '../Components/Title';
import type { Props as MonthProps } from '../Components/Month';
import type { Props as DayProps } from '../Components/Day';
import type { Props as WeekdaysProps } from '../Components/Weekdays';
export type ArrowComponentType = (props: ArrowProps) => JSX.Element | null;
export type TitleComponentType = (props: TitleProps) => JSX.Element | null;
export type MonthComponentType = (props: MonthProps) => JSX.Element | null;
export type DayComponentType = (props: DayProps) => JSX.Element | null;
export type WeekdaysComponentType = (props: WeekdaysProps) => JSX.Element | null;
export type { ArrowProps, TitleProps, MonthProps, DayProps, WeekdaysProps };