UNPKG

@dccs/react-formik-mui

Version:
12 lines (11 loc) 433 B
/// <reference types="react" /> import { FormikProps } from "formik"; import { FormHelperTextProps } from "@material-ui/core/FormHelperText"; export interface IFormHelperTextWrapperProps { name: string; form: FormikProps<any>; error?: boolean; helperText?: string; formHelperTextProps?: FormHelperTextProps; } export default function FormHelperTextWrapper(props: IFormHelperTextWrapperProps): JSX.Element | null;