diff --git a/src/assets/icons/questionsPage/arrowLeft.tsx b/src/assets/icons/questionsPage/arrowLeft.tsx
index 7e4a4489..86abbabb 100755
--- a/src/assets/icons/questionsPage/arrowLeft.tsx
+++ b/src/assets/icons/questionsPage/arrowLeft.tsx
@@ -1,11 +1,11 @@
import { Box } from "@mui/material";
-// interface Props {
-// color: string;
-// }
+interface Props {
+ color: string;
+}
-export default function ArrowLeft() {
+export default function ArrowLeft({color = "#7E2AEA"}: Props) {
return (
diff --git a/src/pages/Questions/Select.tsx b/src/pages/Questions/Select.tsx
index 1d1f4d39..c7f876b7 100644
--- a/src/pages/Questions/Select.tsx
+++ b/src/pages/Questions/Select.tsx
@@ -32,7 +32,7 @@ export const Select = ({
placeholder = "",
colorMain = "#7E2AEA",
colorPlaceholder = "#9A9AAF",
- color
+ color,
}: SelectProps) => {
const [activeItem, setActiveItem] = useState(
empty ? -1 : activeItemIndex
@@ -94,6 +94,7 @@ export const Select = ({
mt: "8px",
p: "4px",
borderRadius: "8px",
+ backgroundColor: theme.palette.background.default,
border: "1px solid #EEE4FC",
boxShadow: "0px 8px 24px rgba(210, 208, 225, 0.4)",
},
@@ -120,7 +121,7 @@ export const Select = ({
gap: "20px",
},
}}
- IconComponent={(props) => }
+ IconComponent={(props) => }
>
{items.map((item, index) => (