import { DEFAULT_FONT_SIZE, DEFAULT_HIT_SLOP, MIN_HEIGHT_INPUT } from '@/core/constants'; import { useTailwind } from '@/hooks'; import { ForwardedRef, forwardRef } from 'react'; import { TextInput as RNTextInput, TextInputProps as RNTextInputProps } from 'react-native'; import { Style } from 'twrnc/dist/esm/types'; interface TextInputProps extends RNTextInputProps { style?: Style; } function TextInput( { style, hitSlop = DEFAULT_HIT_SLOP, ...props }: TextInputProps, ref: ForwardedRef, ) { const tw = useTailwind(); return ( ); } export default forwardRef(TextInput);