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