@brightsoftware/date-np
Version:
Simple & minimal Nepali date picker that just works.
11 lines (10 loc) • 392 B
TypeScript
import type { HTMLAttributes } from "react";
import { NepaliDate } from "../NepaliDate";
type tdayProps = {
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;