@nish1896/rhf-mui-components
Version:
A suite of 20+ reusable Material UI components for React Hook Form to minimize your time and effort in creating and styling forms
12 lines (11 loc) • 391 B
TypeScript
import { type ReactNode } from 'react';
import type { FormHelperTextProps } from '../../types';
type Props = {
error: boolean;
errorMessage?: ReactNode;
helperText?: ReactNode;
hideErrorMessage?: boolean;
formHelperTextProps?: FormHelperTextProps;
};
declare const FormHelperText: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default FormHelperText;