satof3 2 лет назад
Родитель
Сommit
d05ce00ea7
1 измененных файлов с 8 добавлено и 7 удалено
  1. 8 7
      apps/app/src/components/Me/PersonalSettings.jsx

+ 8 - 7
apps/app/src/components/Me/PersonalSettings.jsx

@@ -20,37 +20,38 @@ const PersonalSettings = () => {
   const navTabMapping = useMemo(() => {
   const navTabMapping = useMemo(() => {
     return {
     return {
       user_infomation: {
       user_infomation: {
-        Icon: () => <i className="icon-fw icon-user"></i>,
+        Icon: () => <span className="material-symbols-outlined fs-5 me-1">person</span>,
+
         Content: UserSettings,
         Content: UserSettings,
         i18n: t('User Information'),
         i18n: t('User Information'),
       },
       },
       external_accounts: {
       external_accounts: {
-        Icon: () => <i className="icon-fw icon-share-alt"></i>,
+        Icon: () => <span className="material-symbols-outlined fs-5 me-1">ungroup</span>,
         Content: ExternalAccountLinkedMe,
         Content: ExternalAccountLinkedMe,
         i18n: t('admin:user_management.external_accounts'),
         i18n: t('admin:user_management.external_accounts'),
       },
       },
       password_settings: {
       password_settings: {
-        Icon: () => <i className="icon-fw icon-lock"></i>,
+        Icon: () => <span className="material-symbols-outlined fs-5 me-1">password</span>,
         Content: PasswordSettings,
         Content: PasswordSettings,
         i18n: t('Password Settings'),
         i18n: t('Password Settings'),
       },
       },
       api_settings: {
       api_settings: {
-        Icon: () => <i className="icon-fw icon-paper-plane"></i>,
+        Icon: () => <span className="material-symbols-outlined fs-5 me-1">api</span>,
         Content: ApiSettings,
         Content: ApiSettings,
         i18n: t('API Settings'),
         i18n: t('API Settings'),
       },
       },
       // editor_settings: {
       // editor_settings: {
-      //   Icon: () => <span className="material-symbols-outlined">edit</span>,
+      //   Icon: () => <span className="material-symbols-outlined fs-5 me-1">edit</span>,
       //   Content: EditorSettings,
       //   Content: EditorSettings,
       //   i18n: t('editor_settings.editor_settings'),
       //   i18n: t('editor_settings.editor_settings'),
       // },
       // },
       in_app_notification_settings: {
       in_app_notification_settings: {
-        Icon: () => <i className="icon-fw icon-bell"></i>,
+        Icon: () => <span className="material-symbols-outlined fs-5 me-1">notifications</span>,
         Content: InAppNotificationSettings,
         Content: InAppNotificationSettings,
         i18n: t('in_app_notification_settings.in_app_notification_settings'),
         i18n: t('in_app_notification_settings.in_app_notification_settings'),
       },
       },
       other_settings: {
       other_settings: {
-        Icon: () => <i className="icon-fw icon-settings"></i>,
+        Icon: () => <span className="material-symbols-outlined fs-5 me-1">settings</span>,
         Content: OtherSettings,
         Content: OtherSettings,
         i18n: t('Other Settings'),
         i18n: t('Other Settings'),
       },
       },