UNPKG

@flanksource/clicky-ui

Version:

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

18 lines 763 B
import { InputHTMLAttributes } from 'react'; export type DateTimePickerProps = Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "value" | "onChange"> & { value?: string; onChange?: (value: string) => void; className?: string; inputClassName?: string; buttonClassName?: string; openButtonLabel?: string; }; export declare const DateTimePicker: 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=DateTimePicker.d.ts.map