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