import { memo } from 'react'; // @mui import { useTheme } from '@mui/material/styles'; import Box, { BoxProps } from '@mui/material/Box'; // ---------------------------------------------------------------------- function SentIcon({ ...other }: BoxProps) { const theme = useTheme(); const PRIMARY_MAIN = theme.palette.primary.main; const PRIMARY_DARK = theme.palette.primary.dark; return ( ); } export default memo(SentIcon);