Skip to content

Commit

Permalink
feat(mantine): replace search icon with filter (#3584)
Browse files Browse the repository at this point in the history
  • Loading branch information
agong-coveo authored Nov 8, 2023
1 parent 121078f commit 9a672ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {CrossSize16Px, SearchSize16Px} from '@coveord/plasma-react-icons';
import {CrossSize16Px, FilterSize16Px} from '@coveord/plasma-react-icons';
import {ActionIcon, Grid, TextInput} from '@mantine/core';
import {ChangeEventHandler, FunctionComponent, MouseEventHandler, useEffect, useState} from 'react';

Expand Down Expand Up @@ -57,7 +57,7 @@ export const TableFilter: FunctionComponent<TableFilterProps> = ({
<CrossSize16Px height={16} />
</ActionIcon>
) : (
<SearchSize16Px height={16} className={classes.empty} />
<FilterSize16Px height={16} className={classes.empty} />
)
}
value={filter}
Expand Down

0 comments on commit 9a672ed

Please sign in to comment.