wix / react-native-calendars

React Native Calendar Components 🗓️ 📆
MIT License
9.59k stars 2.96k forks source link

Custom header prop type #2535

Open ahmeterenodaci opened 1 month ago

ahmeterenodaci commented 1 month ago

Description

Custom Header prop does not have a type definition. Currently, the prop accepts any type.

customHeader?: any;

Expected Behavior

The type should have a proper definition.

customHeader?: (props: CalendarHeaderProps) => React.ReactNode;