@attio/react-native-bottom-sheet-toolbox-text-input
Version:
19 lines (17 loc) • 382 B
text/typescript
import type {TextInputProps} from "react-native/types"
export type BottomSheetToolBoxTextInputBaseProps = Pick<
TextInputProps,
| "value"
| "onChangeText"
| "keyboardType"
| "textContentType"
| "autoCapitalize"
| "spellCheck"
| "autoCorrect"
| "autoComplete"
| "autoFocus"
| "editable"
| "onFocus"
| "onBlur"
| "multiline"
>