@brightsoftware/date-np
Version:
Simple & minimal Nepali date picker that just works.
14 lines (13 loc) • 464 B
TypeScript
import type { HTMLAttributes } from "react";
import { NepaliDate } from "../NepaliDate";
type tdayProps = {
dateHover?: string;
todayStyle?: string;
selected?: string;
date: Date | NepaliDate;
disabled?: boolean;
isToday?: boolean;
onRangeSelect?: (date: Date | NepaliDate) => void | undefined;
} & HTMLAttributes<HTMLButtonElement>;
declare const Day: (props: tdayProps) => import("react/jsx-runtime").JSX.Element;
export default Day;