Skip to content

Commit f48fbb4

Browse files
authored
Changed color of the open/close icon in the multiSelect component (#650)
1 parent 7cd7735 commit f48fbb4

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Diff for: src/components/MultiSelect.jsx

+9-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ import {
2222
position,
2323
} from "styled-system";
2424

25-
import { BottomSheet, CheckBox, Container, Alert, Loader } from "@components";
25+
import { Alert } from "./Alert";
26+
import { BottomSheet } from "./BottomSheet";
27+
import { CheckBox } from "./CheckBox";
28+
import { Container } from "./Container";
29+
import { Loader } from "./Loader";
2630

2731
const Typography = styled.Text`
2832
${textStyle}
@@ -421,7 +425,10 @@ export const MultiSelect = ({
421425
{isLoading ? (
422426
<Loader color={theme.colors.background.base} />
423427
) : (
424-
<OpenCloseIcon color="grey" size={moderateScale(20)} />
428+
<OpenCloseIcon
429+
color={theme.colors.background.grey800}
430+
size={moderateScale(20)}
431+
/>
425432
)}
426433
</Container>
427434
</Container>

0 commit comments

Comments
 (0)