import { FC } from "react"; import { TextField, Autocomplete as AutocompleteInternal } from "@mui/material"; import { colors } from "../styles/theme"; type AutocompleteProps = { name: string; label: string; options: any[]; formState: Record; disabled?: boolean; required?: boolean; }; export const Autocomplete: FC = ({ name, label, options, formState, disabled = false, required = false, }) => ( ( )} /> );