UNPKG

habesha-datepicker

Version:

An Ethiopian date picker component designed for React applications.

14 lines (13 loc) 487 B
import React from "react"; interface EthiopianDateCalendarProps { isRange?: boolean; startDate?: Date | null; endDate?: Date | null; initialViewDate?: Date | null; hoveredDate?: Date | null; setHoveredDate?: (date: Date | null) => void; onDateChange: (date: Date | [Date | null, Date | null]) => void; onMonthChange?: (date: Date) => void; } declare const EthiopianDateCalendar: React.FC<EthiopianDateCalendarProps>; export default EthiopianDateCalendar;