timeline-calendar-react
Version:
A timeline calendar component for React, built with TypeScript and Vite.
11 lines (10 loc) • 385 B
TypeScript
import { Locale, Theme } from '../../types';
type MonthControlProps = {
currentDate: string;
onDateChange: (newDate: string) => void;
theme?: Theme;
accentColor: string;
lang: Locale;
};
declare function MonthControl({ currentDate, onDateChange, theme, accentColor, lang, }: MonthControlProps): import("react/jsx-runtime").JSX.Element;
export default MonthControl;