import {FormControl, FormHelperText, InputLabel, MenuItem, Select,} from "@mui/material"; import {useTranslations} from "next-intl"; function SelectBox({ select, name, selectors, label, handleChange, error, onBlur, schema, disabled, helperText, isLoading, errorEcured, variant = "outlined" }) { const t = useTranslations(); return ( {label} {helperText} ); } export default SelectBox;