react-ultimate-calendar
Version:
A lightweight calendar for React application.
12 lines (11 loc) • 396 B
TypeScript
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;