fix: ltr style of phonenumber in layout

This commit is contained in:
Sajad Mirjalili
2025-09-14 13:41:26 +03:30
parent 7267b6033f
commit a42da2d4c4
3 changed files with 12 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
import { styled, Typography } from '@mui/material';
export const LTRTypography = styled(Typography)`
/* @noflip */
direction: ltr;
`;