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) • 309 B
TypeScript
/// <reference types="react" />
import { MaskedInputProps } from '../MaskedInput';
export declare type TimeInputProps = MaskedInputProps & {
onChangeTime?: (time: string | null) => void;
};
declare const TimeInput: ({ onChangeTime, ...props }: TimeInputProps) => JSX.Element;
export { TimeInput };