// @mui import { styled } from '@mui/material/styles'; import { Grid, RadioGroup, CardActionArea } from '@mui/material'; // hooks import useSettings from '../../hooks/useSettings'; // import Iconify from '../Iconify'; import { BoxMask } from '.'; // ---------------------------------------------------------------------- const BoxStyle = styled(CardActionArea)(({ theme }) => ({ height: 72, display: 'flex', alignItems: 'center', justifyContent: 'center', color: theme.palette.text.disabled, border: `solid 1px ${theme.palette.grey[500_12]}`, borderRadius: Number(theme.shape.borderRadius) * 1.25, })); // ---------------------------------------------------------------------- export default function SettingDirection() { const { themeDirection, onChangeDirection } = useSettings(); return ( {['ltr', 'rtl'].map((direction, index) => { const isSelected = themeDirection === direction; return ( theme.customShadows.z20, }), }} > ); })} ); }