@khareem/react-tailwindcss-datepicker
Version:
A modern React Datepicker using Tailwind CSS 3
9 lines (8 loc) • 315 B
TypeScript
import { RefObject } from "react";
import { DatepickerType } from "../types";
type Props = {
setContextRef?: (ref: RefObject<HTMLInputElement>) => void;
onVisibleChange?: DatepickerType["onVisibleChange"];
};
declare const Input: (e: Props) => import("react/jsx-runtime").JSX.Element;
export default Input;