Skip to content

Commit

Permalink
fix(ui/components): fix Search icon (#46)
Browse files Browse the repository at this point in the history
makes the icon actually visible
  • Loading branch information
nexpid authored Jun 4, 2024
1 parent 8a4d5fc commit 105e1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ui/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface SearchProps {
}

function SearchIcon() {
return <Image style={{ transform: [{ scale: 0.8 }] }} source={requireAssetIndex("search")} />;
return <Image style={{ width: 16, height: 16 }} source={requireAssetIndex("search")} />;
}

export default ({ onChangeText, placeholder, style }: SearchProps) => {
Expand Down

0 comments on commit 105e1c5

Please sign in to comment.