Files
frontend/src/core/components/LtrTextField.jsx
Amirhossein Mahmoodi c84d253721 formatting
2024-07-11 10:57:53 +03:30

11 lines
203 B
JavaScript

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