Fix yoshiki insert bug in input

This commit is contained in:
Zoe Roux
2023-12-01 23:28:28 +01:00
parent 07259a7635
commit b2c67e7df4
5 changed files with 41 additions and 36 deletions
+3 -1
View File
@@ -87,8 +87,10 @@ const SearchBar = forwardRef<TextInput, Stylable>(function SearchBar(props, ref)
setQuery(q);
}}
placeholder={t("navbar.search")}
placeholderTextColor={theme.colors.white}
containerStyle={{ height: ts(4), flexShrink: 1, borderColor: (theme) => theme.colors.white }}
{...tooltip(t("navbar.search"))}
{...css({ height: ts(4), flexShrink: 1, borderColor: (theme) => theme.colors.white }, props)}
{...props}
/>
);
});