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