@pagamio/frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
15 lines (14 loc) • 428 B
TypeScript
import 'flowbite';
type DatePickerProps = {
ref?: any;
name?: string;
placeholder?: string;
disabled?: boolean;
id?: string;
className?: string;
value?: Date | null;
onChange?: (date: Date) => void;
};
declare function DatePicker({ value, disabled, name, onChange }: Readonly<DatePickerProps>): import("react/jsx-runtime").JSX.Element;
export default DatePicker;
export type { DatePickerProps };