\n
\n
\n setErrorMessage(getErrorMessage({ name, code: error?.type })),\n })}\n />\n
\n {errorMessage && (\n
\n {errorMessage}\n \n )}\n
\n );\n};\n","export { InputFieldWithLabel } from './InputFieldWithLabel';\n","import { InputHTMLAttributes, forwardRef } from 'react';\nimport cx from 'classnames';\nimport styles from './index.module.scss';\n\ntype Option = {\n label: string | number;\n value: string | number;\n};\n\ntype Props = InputHTMLAttributes