UNPKG

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) 428 B
/// <reference types="react" /> import { FieldPrototypeProps } from '../Builders'; import { DateInputProps } from '../Inputs'; export declare type DateFieldProps = Omit<DateInputProps, 'onChange'> & FieldPrototypeProps; declare const DateField: ({ name, label, required, disabled, helperText, id, tip, colSpan, colStart, colEnd, rowSpan, rowStart, rowEnd, ...props }: DateFieldProps) => JSX.Element; export { DateField };