diff --git a/src/App.tsx b/src/App.tsx
index 92aa923..4cb416a 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1817,7 +1817,7 @@ function App() {
setIsOpenDrawerProfile(true);
}}
>
-
+
>
diff --git a/src/assets/Icons/WalletIcon.tsx b/src/assets/Icons/WalletIcon.tsx
index 92223bf..9bb606b 100644
--- a/src/assets/Icons/WalletIcon.tsx
+++ b/src/assets/Icons/WalletIcon.tsx
@@ -1,8 +1,18 @@
-import React from "react";
+import { useTheme } from '@mui/material';
+import { SVGProps } from '../svgs/interfaces';
+
+export const WalletIcon: React.FC = ({
+ color,
+ width,
+ ...children
+}) => {
+ const theme = useTheme();
+
+ const setColor = color ? color : theme.palette.text.primary;
-export const WalletIcon = ({ color, height, width }) => {
return (