11 lines
454 B
TypeScript
11 lines
454 B
TypeScript
import { GoogleInputProps } from "@/types/type";
|
|
import { Text, View } from "react-native";
|
|
import tw from "twrnc";
|
|
const GoogleInputField =({icon,initialLocation,containerStyle,textInputBackgroundColor,handlePress}:GoogleInputProps)=>{
|
|
return(
|
|
<View style={tw`flex flex-row items-center justify-center relative z-50 rounded-xl ${containerStyle} mb-5`} >
|
|
<Text>Search</Text>
|
|
</View>
|
|
)
|
|
}
|
|
export default GoogleInputField; |