UNPKG

@armin-eslami/persian-calendar

Version:

Big persian calendar component made by react.

10 lines (9 loc) 284 B
import { PersianCalendarTheme, Day } from "../../../props"; import { Month } from "../../../props/Month"; interface YearViewProps { months: Month[]; theme: PersianCalendarTheme; gridColumnCount: number; onDayClick?: (day: Day) => void; } export default YearViewProps;