diff --git a/src/assets/Icons/AppsIcon.tsx b/src/assets/Icons/AppsIcon.tsx
index 753fe17..d2ad47c 100644
--- a/src/assets/Icons/AppsIcon.tsx
+++ b/src/assets/Icons/AppsIcon.tsx
@@ -1,6 +1,8 @@
-import React from "react";
+import { useTheme } from "@mui/material";
+
+export const AppsIcon = ({ height = 31, width = 31 }) => {
+ const theme = useTheme();
-export const AppsIcon = ({ color, height = 31, width = 31 }) => {
return (
);
diff --git a/src/assets/Icons/HomeIcon.tsx b/src/assets/Icons/HomeIcon.tsx
index 38f880d..7659119 100644
--- a/src/assets/Icons/HomeIcon.tsx
+++ b/src/assets/Icons/HomeIcon.tsx
@@ -1,12 +1,20 @@
-import React from 'react';
+import { useTheme } from "@mui/material";
-export const HomeIcon= ({ color, height = 20, width = 23 }) => {
- return (
-
-
+export const HomeIcon = ({ height = 20, width = 23 }) => {
+ const theme = useTheme();
- );
- };
-
\ No newline at end of file
+ return (
+
+ );
+};
diff --git a/src/assets/Icons/MessagingIcon.tsx b/src/assets/Icons/MessagingIcon.tsx
index c1e11a6..c14d1d3 100644
--- a/src/assets/Icons/MessagingIcon.tsx
+++ b/src/assets/Icons/MessagingIcon.tsx
@@ -1,6 +1,10 @@
-import React from "react";
+import { useTheme } from "@mui/material";
export const MessagingIcon = ({ color, height = 31, width = 31 }) => {
+ const theme = useTheme();
+
+ const setColor = color ? color : theme.palette.text.primary
+
return (