import { alpha, Box, styled } from '@mui/material'; export const IconTypography = styled(Box)(({ theme }) => ({ color: theme.palette.mode === 'light' ? alpha(theme.palette.common.black, 0.32) : alpha(theme.palette.common.white, 0.4), lineHeight: 0, }));