merge
This commit is contained in:
+2
-12
@@ -11,7 +11,7 @@ import {
|
||||
// import CountryPicker, { DARK_THEME } from "react-native-country-picker-modal";
|
||||
import usePlaceApi from "react-native-minuit/src/hooks/usePlacesApi";
|
||||
|
||||
import { art, icons } from "../assets";
|
||||
import { icons } from "../assets";
|
||||
import { Fonts, Palette, Style, gutters } from "../styles";
|
||||
import { FONT_FAMILY } from "../styles/Fonts";
|
||||
|
||||
@@ -69,11 +69,7 @@ const Input = ({
|
||||
const ContainerView = isBlur ? BlurView : View;
|
||||
const resolvedKeyboardType =
|
||||
textInputProps?.keyboardType ??
|
||||
(isNumeric
|
||||
? "numeric"
|
||||
: type === "email"
|
||||
? "email-address"
|
||||
: "default");
|
||||
(isNumeric ? "numeric" : type === "email" ? "email-address" : "default");
|
||||
|
||||
return (
|
||||
<>
|
||||
@@ -198,12 +194,6 @@ const Input = ({
|
||||
<Pressable onPress={() => setShowPassword(!showPassword)}>
|
||||
{showPassword ? <EyeSVG /> : <EyeSlashSVG />}
|
||||
</Pressable>
|
||||
) : type === "coinAmount" ? (
|
||||
<Image
|
||||
source={art.coin}
|
||||
style={[Style.iconDefault]}
|
||||
resizeMode="contain"
|
||||
/>
|
||||
) : null}
|
||||
</ContainerView>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user