Skip to content

Commit

Permalink
Merge pull request #1983 from ilyapishchulin/Fixed-icon-for-search-on…
Browse files Browse the repository at this point in the history
…-android

Fixed icon for search on android
  • Loading branch information
ArthurStam authored Oct 19, 2021
2 parents 1b8bc14 + 1934eb4 commit 6f5ebeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Search/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ const Search: React.FC<SearchProps> = ({
}
{!!value &&
<Touch onStart={onIconCancelClickStart} vkuiClass="Search__icon">
{platform === VKCOM
? <Icon24Cancel />
: <Icon16Clear />
{platform === IOS
? <Icon16Clear />
: <Icon24Cancel />
}
</Touch>
}
Expand Down

0 comments on commit 6f5ebeb

Please sign in to comment.