UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

16 lines (15 loc) 467 B
import 'flowbite'; type DatePickerProps = { ref?: any; name?: string; placeholder?: string; disabled?: boolean; id?: string; className?: string; value?: Date | null; defaultValue?: Date; onChange?: (date: Date) => void; }; declare function DatePicker({ value, defaultValue, disabled, name, onChange }: Readonly<DatePickerProps>): import("react/jsx-runtime").JSX.Element; export default DatePicker; export type { DatePickerProps };