@bottledbrains/ui
Version:
A React UI library based on Tailwind CSS
11 lines (10 loc) • 312 B
TypeScript
import { Dayjs } from 'dayjs';
import { FC } from 'react';
export interface CalendarProps {
month?: Dayjs;
onMonthChange?: (month: Dayjs) => void;
onDateClick?: (date: number) => void;
dateChecked?: (date: number) => boolean;
}
declare const Calendar: FC<CalendarProps>;
export default Calendar;