Change named exports to default exports for mui icons

This is to reduce transfer size when users load the page for the first time

Change-Id: I3215b7099bcdbea7b446da599810f5951407bbdb
diff --git a/client/src/components/AccountPreferences.tsx b/client/src/components/AccountPreferences.tsx
index 9355a8b..fc01074 100644
--- a/client/src/components/AccountPreferences.tsx
+++ b/client/src/components/AccountPreferences.tsx
@@ -15,7 +15,10 @@
  * License along with this program.  If not, see
  * <https://www.gnu.org/licenses/>.
  */
-import { AddCircle, DeleteRounded, GroupRounded, PhoneCallbackRounded } from '@mui/icons-material';
+import AddCircle from '@mui/icons-material/AddCircle';
+import DeleteRounded from '@mui/icons-material/AddCircle';
+import GroupRounded from '@mui/icons-material/AddCircle';
+import PhoneCallbackRounded from '@mui/icons-material/AddCircle';
 import {
   Card,
   CardContent,