import useFormErrorParser from '@components/theme/form/hooks/FormErrorParserHook'; import { SelectElement } from 'react-hook-form-mui'; import { InputSelectProps, } from '@lib/plume-admin-theme/form/FormInputProps'; import scss from './form-input.module.scss'; export default function InputSelect( { name, label, options, disabled, required, errorMessageMapping, }: Readonly) { const { parseError } = useFormErrorParser({ errorMapping: errorMessageMapping }); return ( ); }