UNPKG

@mayurphumatiya/calendar-ts

Version:

![image](https://github.com/mayurphumatiya/calendar-ts/assets/98944957/4afb8fe3-e020-4706-9a17-53d1c2b3a114)

15 lines (14 loc) 453 B
import React from "react"; import "./index.css"; export declare const days: string[]; export declare const months: string[]; interface CalendarProps { getCurrDate: (selectedDate: Date) => void; bgcolor?: string; text?: string; borderWidth?: string; dateHeight?: string; currDateBg?: string; } export default function Calendar({ bgcolor, text, borderWidth, dateHeight, currDateBg, }: CalendarProps): React.JSX.Element; export {};