import useFormErrorParser from '@components/theme/form/hooks/FormErrorParserHook'; import { InputTextProps } from '@lib/plume-admin-theme/form/FormInputProps'; import { TextFieldElement } from 'react-hook-form-mui'; import classNames from '@lib/class-names/ClassNames'; import scss from './form-input.module.scss'; export default function InputText( { type = 'text', label, name, rules, disabled, autoComplete, multiline, rows, errorMessageMapping, InputProps, }: Readonly, ) { const { parseError } = useFormErrorParser({ errorMapping: errorMessageMapping }); return ( ); }