import { MAX_HEIGHT_INPUT, MIN_HEIGHT_INPUT } from '@/core/constants'; import { useTailwind } from '@/hooks'; import { ForwardedRef, forwardRef } from 'react'; import { TextInput as RNTextInput, TextInputProps as RNTextInputProps, View } from 'react-native'; import { Style } from 'twrnc/dist/esm/types'; import TextInput from '../singleline/TextInput'; export interface MultilineTextInputProps extends RNTextInputProps { dynamicHeight?: boolean; containerStyle?: Style; style?: Style; } function MultilineTextInput( { dynamicHeight = false, style, containerStyle, ...props }: MultilineTextInputProps, ref: ForwardedRef, ) { const tw = useTailwind(); return ( ); } export default forwardRef(MultilineTextInput);