import { useThemeColor } from '@/hooks/useThemeColor'; import { Ionicons } from '@expo/vector-icons'; import React from 'react'; import { StyleSheet, TextInput, View } from 'react-native'; interface SearchBoxProps { placeholder?: string; value?: string; onChangeText?: (text: string) => void; } export function SearchBox({ placeholder = "Search", value, onChangeText }: SearchBoxProps) { const backgroundColor = useThemeColor({}, 'background'); const textColor = useThemeColor({}, 'text'); const iconColor = useThemeColor({ light: '#9BA1A6', dark: '#687076' }, 'icon'); return ( ); } const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#FFFFFF', borderRadius: 25, paddingHorizontal: 18, paddingVertical: 14, marginHorizontal: 20, marginVertical: 10, shadowColor: '#000', shadowOffset: { width: 0, height: 2, }, shadowOpacity: 0.08, shadowRadius: 8, elevation: 3, borderWidth: 1, borderColor: '#F0F0F0', }, icon: { marginRight: 12, }, input: { flex: 1, fontSize: 16, color: '#333', height: 20, }, });