import React, { forwardRef } from "react"; import { TextInput, StyleSheet, ViewStyle } from "react-native"; import { AtomicInput } from "@umituz/react-native-design-system/atoms"; interface FormEmailInputProps { value: string; onChangeText: (text: string) => void; label: string; placeholder: string; error?: string | null; disabled?: boolean; onSubmitEditing?: () => void; returnKeyType?: "next" | "done"; style?: ViewStyle; } export const FormEmailInput = forwardRef, FormEmailInputProps>( ( { value, onChangeText, label, placeholder, error, disabled = false, onSubmitEditing, returnKeyType = "next", style, }, ref ) => { return ( ); } ); FormEmailInput.displayName = "FormEmailInput"; const styles = StyleSheet.create({ input: { marginBottom: 20, }, });