@tiller-ds/formik-elements
Version:
Formik elements module of Tiller Design System
12 lines (11 loc) • 527 B
TypeScript
/// <reference types="react" />
import { DateTimeInputProps } from "@tiller-ds/date";
declare type DateTimeInputOnlyPropsUnion = "value" | "onChange" | "onBlur" | "error";
export declare type DateTimeInputFieldProps = {
/**
* The accessor value for the component (for validation, fetching, etc.).
*/
name: string;
} & Omit<DateTimeInputProps, DateTimeInputOnlyPropsUnion>;
export default function DateTimeInputField({ name, allowClear, ...props }: DateTimeInputFieldProps): JSX.Element;
export {};