123456789101112131415161718192021222324 |
- import { TextField, type TextFieldProps, styled } from "@mui/material";
- import { useTranslation } from "react-i18next";
- export const BaseStyledTextField = styled((props: TextFieldProps) => {
- const { t } = useTranslation();
- return (
- <TextField
- autoComplete="off"
- hiddenLabel
- fullWidth
- size="small"
- variant="outlined"
- spellCheck="false"
- placeholder={t("Filter conditions")}
- sx={{ input: { py: 0.65, px: 1.25 } }}
- {...props}
- />
- );
- })(({ theme }) => ({
- "& .MuiInputBase-root": {
- background: theme.palette.mode === "light" ? "#fff" : undefined,
- },
- }));
|