import * as React from 'react' import { useTranslation } from 'react-i18next' import { Platform, StyleSheet, Text, View } from 'react-native' import TextInput from 'src/components/TextInput' import colors from 'src/styles/colors' import { typeScale } from 'src/styles/fonts' import { Spacing } from 'src/styles/styles' interface SendSelectRecipientSearchInputProps { input: string onChangeText: (value: string) => void } export function SendSelectRecipientSearchInput({ input, onChangeText, }: SendSelectRecipientSearchInputProps) { const { t } = useTranslation() // Font scaling is causing issues on Android const allowFontScaling = Platform.OS === 'ios' return ( {t('sendSelectRecipient.searchInputLabel')} ) } const styles = StyleSheet.create({ textInputContainer: { flexDirection: 'row', alignItems: 'center', columnGap: Spacing.Smallest8, paddingVertical: Spacing.Smallest8, paddingHorizontal: Spacing.Small12, borderWidth: 1, borderColor: colors.borderSecondary, borderRadius: 100, backgroundColor: colors.textInputBackground, }, input: { ...typeScale.bodySmall, // Unset lineHeight to avoid font scaling issues lineHeight: undefined, paddingVertical: 0, height: 24, }, label: { ...typeScale.labelSemiBoldSmall, color: colors.contentSecondary, }, })