Files
waseel/components/google-text-input.tsx
T

18 lines
417 B
TypeScript

import { Text, View } from "react-native";
import type { GoogleInputProps } from "@/types/type";
export const GoogleTextInput = ({
icon,
initialLocation,
containerStyles,
textInputBackgroundColor,
handlePress,
}: GoogleInputProps) => (
<View
className={`flex flex-row items-center justify-center realtive z-50 rounded-xl mb-5 ${containerStyles}`}
>
<Text>Google Text Input</Text>
</View>
);