UNPKG

@flanksource/clicky-ui

Version:

Flanksource Clicky UI — React component library built on shadcn/ui with light/dark and density theming.

18 lines 751 B
import { InputHTMLAttributes } from 'react'; export type DatePickerProps = Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "value" | "onChange"> & { value?: string; onChange?: (value: string) => void; className?: string; inputClassName?: string; buttonClassName?: string; openButtonLabel?: string; }; export declare const DatePicker: import('react').ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "type" | "onChange"> & { value?: string; onChange?: (value: string) => void; className?: string; inputClassName?: string; buttonClassName?: string; openButtonLabel?: string; } & import('react').RefAttributes<HTMLInputElement>>; //# sourceMappingURL=DatePicker.d.ts.map