diff --git a/src/App.tsx b/src/App.tsx
index 6297047..f8e4146 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -30,7 +30,6 @@ import { CountdownCircleTimer } from 'react-countdown-circle-timer';
import Logo1Dark from './assets/svgs/Logo1Dark.svg';
import RefreshIcon from '@mui/icons-material/Refresh';
import DownloadIcon from '@mui/icons-material/Download';
-import Copy from './assets/svgs/Copy.svg';
import ltcLogo from './assets/ltc.png';
import PersonSearchIcon from '@mui/icons-material/PersonSearch';
import qortLogo from './assets/qort.png';
@@ -137,6 +136,7 @@ import ThemeSelector from './components/Theme/ThemeSelector.tsx';
import { useTranslation } from 'react-i18next';
import LanguageSelector from './components/Language/LanguageSelector.tsx';
import { DownloadWallet } from './components/Auth/DownloadWallet.tsx';
+import { CopyIcon } from './assets/Icons/CopyIcon.tsx';
type extStates =
| 'not-authenticated'
@@ -1297,7 +1297,8 @@ function App() {
{rawWallet?.ltcAddress?.slice(0, 6)}...
- {rawWallet?.ltcAddress?.slice(-4)}
+ {rawWallet?.ltcAddress?.slice(-4)}{' '}
+
@@ -1362,7 +1363,8 @@ function App() {
{rawWallet?.address0?.slice(0, 6)}...
- {rawWallet?.address0?.slice(-4)}
+ {rawWallet?.address0?.slice(-4)}{' '}
+
@@ -1519,7 +1521,11 @@ function App() {
},
}}
>
-
+
@@ -1559,7 +1565,11 @@ function App() {
},
}}
>
-
+
@@ -1599,7 +1609,11 @@ function App() {
},
}}
>
-
+
@@ -1639,7 +1653,11 @@ function App() {
},
}}
>
-
+
@@ -1681,7 +1699,10 @@ function App() {
setIsOpenDrawerProfile(true);
}}
>
-
+
>
@@ -1787,7 +1808,11 @@ function App() {
},
}}
>
-
+
@@ -1832,7 +1857,11 @@ function App() {
},
}}
>
-
+
)}
@@ -1874,7 +1903,11 @@ function App() {
},
}}
>
-
+
@@ -2165,10 +2198,10 @@ function App() {
defaultChecked={messageQortalRequest?.checkbox1?.value}
sx={{
'&.Mui-checked': {
- color: 'white', // Customize the color when checked
+ color: theme.palette.text.secondary, // Customize the color when checked
},
'& .MuiSvgIcon-root': {
- color: 'white',
+ color: theme.palette.text.secondary,
},
}}
/>
@@ -3407,10 +3440,10 @@ function App() {
}
sx={{
'&.Mui-checked': {
- color: 'white', // Customize the color when checked
+ color: theme.palette.text.secondary, // Customize the color when checked
},
'& .MuiSvgIcon-root': {
- color: 'white',
+ color: theme.palette.text.secondary,
},
}}
/>
@@ -3436,10 +3469,10 @@ function App() {
disableRipple
sx={{
'&.Mui-checked': {
- color: 'white',
+ color: theme.palette.text.secondary,
},
'& .MuiSvgIcon-root': {
- color: 'white',
+ color: theme.palette.text.secondary,
},
}}
/>
diff --git a/src/assets/Icons/ChatIcon.tsx b/src/assets/Icons/ChatIcon.tsx
index f68ed35..8546949 100644
--- a/src/assets/Icons/ChatIcon.tsx
+++ b/src/assets/Icons/ChatIcon.tsx
@@ -1,12 +1,18 @@
import React from 'react';
-export const ChatIcon= ({ color = 'white', height = 15, width = 15 }) => {
- return (
-
-
-
- );
- };
-
\ No newline at end of file
+export const ChatIcon = ({ color = 'white', height = 15, width = 15 }) => {
+ return (
+
+ );
+};
diff --git a/src/assets/Icons/CopyIcon.tsx b/src/assets/Icons/CopyIcon.tsx
new file mode 100644
index 0000000..67ede2d
--- /dev/null
+++ b/src/assets/Icons/CopyIcon.tsx
@@ -0,0 +1,25 @@
+import { useTheme } from '@mui/material';
+import React from 'react';
+
+export const CopyIcon = ({ color, height = 11, width = 10 }) => {
+ const theme = useTheme();
+
+ const setColor = color ? color : theme.palette.text.primary;
+ return (
+
+ );
+};
diff --git a/src/assets/Icons/MessagingIcon2.tsx b/src/assets/Icons/MessagingIcon2.tsx
deleted file mode 100644
index da367cd..0000000
--- a/src/assets/Icons/MessagingIcon2.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import React from 'react';
-
-export const MessagingIcon2= ({ color = '#8F8F91', height = 24, width =24 }) => {
- return (
-
-
-
-
-
- );
- };
-
\ No newline at end of file
diff --git a/src/assets/Icons/MessagingIconFilled.tsx b/src/assets/Icons/MessagingIconFilled.tsx
new file mode 100644
index 0000000..5dc6e04
--- /dev/null
+++ b/src/assets/Icons/MessagingIconFilled.tsx
@@ -0,0 +1,24 @@
+import { useTheme } from '@mui/material';
+import React from 'react';
+
+export const MessagingIconFilled = ({ color, height = 31, width = 31 }) => {
+ const theme = useTheme();
+
+ const setColor = color ? color : theme.palette.text.primary;
+ return (
+
+ );
+};
diff --git a/src/assets/Icons/QappDevelopText.tsx b/src/assets/Icons/QappDevelopText.tsx
index e0856cf..9bd30f9 100644
--- a/src/assets/Icons/QappDevelopText.tsx
+++ b/src/assets/Icons/QappDevelopText.tsx
@@ -14,8 +14,8 @@ export const QappDevelopText: React.FC = ({
return (