import React from 'react'; import type { TextStyle } from 'react-native'; import { I18nManager, StyleSheet, TextInput } from 'react-native'; import { COLORS, FONT_SIZE } from '../../constants'; import { useSelectInput } from './select-input.hooks'; export const SelectInput = () => { const { disabled, multiple, placeholderTextColor, searchValue, onPressSelectControl, selectInputProps, textCustomStyles, searchInputRef, resolvedPlaceholder, onChangeText, } = useSelectInput(); return ( ); }; type Styles = { text: TextStyle; disabled: TextStyle; marginMultiple: TextStyle; }; const styles = StyleSheet.create({ text: { fontSize: FONT_SIZE, }, disabled: { backgroundColor: COLORS.DISABLED, }, marginMultiple: { marginRight: 6, }, });