We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c24fd commit b538ed2Copy full SHA for b538ed2
1 file changed
src/components/Input/index.tsx
@@ -9,7 +9,7 @@ import {
9
KeyboardTypeOptions,
10
StyleSheet,
11
TextStyle,
12
- TextInputSubmitEditingEventData,
+ TextInputSubmitEditingEvent,
13
} from 'react-native';
14
import { GlobalStyles } from '../../styles';
15
import Text from '../Text';
@@ -20,7 +20,7 @@ type InputProps = {
20
placeholderStyle?: TextStyle | TextStyle[];
21
onChangeText: ((text: string) => void) | undefined;
22
onSubmitEditing?:
23
- | ((e: NativeSyntheticEvent<TextInputSubmitEditingEventData>) => void)
+ | ((e: NativeSyntheticEvent<TextInputSubmitEditingEvent>) => void)
24
| undefined;
25
onClearButtonPress?: null | (() => void);
26
onBlur?: null | (() => void);
0 commit comments