diff --git a/src/components/common/TokenExplorerLink/index.tsx b/src/components/common/TokenExplorerLink/index.tsx
index 109f502c55..b22951d81c 100644
--- a/src/components/common/TokenExplorerLink/index.tsx
+++ b/src/components/common/TokenExplorerLink/index.tsx
@@ -1,8 +1,8 @@
import { type ReactElement } from 'react'
-import { ExplorerButton } from '@safe-global/safe-react-components'
-
+import ExplorerButton from '@/components/common/ExplorerButton'
import { useCurrentChain } from '@/hooks/useChains'
import { getBlockExplorerLink } from '@/utils/chains'
+import { Typography } from '@mui/material'
const ExplorerLink = ({ address }: { address: string }): ReactElement | null => {
const currentChain = useCurrentChain()
@@ -10,7 +10,11 @@ const ExplorerLink = ({ address }: { address: string }): ReactElement | null =>
if (!link) return null
- return
+ return (
+
+
+
+ )
}
export default ExplorerLink