UNPKG

react-patro

Version:

AD and BS Calendar functions as hooks and component

10 lines (9 loc) 261 B
import React from "react"; interface RangePickerTypes { value: string; size: "large" | "small"; separator: " " | "-" | "/"; calendarType: "AD" | "BS"; } declare const RangePicker: React.FC<RangePickerTypes>; export default RangePicker;