import { TextField, type TextFieldProps, styled } from "@mui/material"; import { useTranslation } from "react-i18next"; export const BaseStyledTextField = styled((props: TextFieldProps) => { const { t } = useTranslation(); return ( ); })(({ theme }) => ({ "& .MuiInputBase-root": { background: theme.palette.mode === "light" ? "#fff" : undefined, }, }));