diff --git a/src/pages/proxies.tsx b/src/pages/proxies.tsx
index 29b630f68..2f38b5ff9 100644
--- a/src/pages/proxies.tsx
+++ b/src/pages/proxies.tsx
@@ -1,3 +1,4 @@
+import { LanOutlined, LanRounded } from "@mui/icons-material";
import { Box, Button, ButtonGroup } from "@mui/material";
import { useLockFn } from "ahooks";
import { useCallback, useEffect, useMemo, useReducer, useState } from "react";
@@ -167,6 +168,13 @@ const ProxyPage = () => {
variant={isChainMode ? "contained" : "outlined"}
onClick={onToggleChainMode}
sx={{ ml: 1 }}
+ startIcon={
+ isChainMode ? (
+
+ ) : (
+
+ )
+ }
>
{t("proxies.page.actions.toggleChain")}