react-hook-form-chakra-fields
Version:
A collection of form fields on top of simple and accessible react component library [Chakra UI](https://chakra-ui.com/) and performant form library [React Hook Form](https://react-hook-form.com/), integrated with many other js/ts libraries.
7 lines (6 loc) • 452 B
TypeScript
/// <reference types="react" />
import { FieldPrototypeProps } from '../Builders';
import { DateTimeInputProps } from '../Inputs';
export declare type DateTimeFieldProps = Omit<DateTimeInputProps, 'onChange'> & FieldPrototypeProps;
declare const DateTimeField: ({ name, label, required, disabled, helperText, id, tip, colSpan, colStart, colEnd, rowSpan, rowStart, rowEnd, ...props }: DateTimeFieldProps) => JSX.Element;
export { DateTimeField };