updated tick icon

This commit is contained in:
Abhinav 2021-11-03 19:07:46 +05:30
parent d8eb2231be
commit 9afe465e91
2 changed files with 4 additions and 4 deletions

View file

@ -14,7 +14,7 @@ export default function TickIcon(props) {
}
TickIcon.defaultProps = {
height: 28,
height: 20,
width: 20,
viewBox: '0 0 24 24',
};

View file

@ -1,4 +1,4 @@
import { Label, Value } from 'components/Container';
import { Value } from 'components/Container';
import TickIcon from 'components/icons/TickIcon';
import React from 'react';
import { ListGroup, Popover, Row } from 'react-bootstrap';
@ -23,13 +23,13 @@ const SortByOptionCreator =
(
<MenuItem>
<Row>
<Label width="20px">
<Value width="20px">
{activeSortBy === props.sortBy && (
<TickWrapper>
<TickIcon />
</TickWrapper>
)}
</Label>
</Value>
<Value width="165px">
<MenuLink
onClick={() => setCollectionSortBy(props.sortBy)}