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.

8 lines (7 loc) 301 B
/// <reference types="react" /> import { NumberFormatProps } from 'react-number-format'; export declare type MoneyInputProps = NumberFormatProps & { value: number | string; }; declare const MoneyInput: ({ hasError, value, ...props }: MoneyInputProps) => JSX.Element; export { MoneyInput };