import { View } from 'react-native'; import { cn } from '../../lib/cn'; import { Input as UIInput } from '../../ui/input'; import { Text } from '../../ui/text'; import type { InputProps } from './Input.types'; export function Input({ label, helperText, error, editable = true, containerClassName, labelClassName, inputClassName, helperClassName, ...props }: InputProps) { return ( {label ? ( {label} ) : null} {helperText ? ( {helperText} ) : null} ); }