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