Files
Frontend/src/core/components/LtrTextField.jsx
AmirHossein Mahmoodi 9bcddb6610 Feature/migration
2025-05-05 09:57:50 +00:00

11 lines
191 B
JavaScript

import { styled, TextField } from "@mui/material";
const LtrTextField = styled(TextField)`
.MuiInputBase-input {
/* @noflip */
direction: ltr;
}
`;
export default LtrTextField;