UNPKG

react-ultimate-calendar

Version:
12 lines (11 loc) 396 B
import React from "react"; interface DateNavigationProps { children?: React.ReactNode; className?: string; nextMonth: () => void; prevMonth: () => void; nextYear: () => void; prevYear: () => void; } declare const DateNavigation: ({ className, children, nextMonth, prevMonth, nextYear, prevYear, }: DateNavigationProps) => React.JSX.Element; export default DateNavigation;