UNPKG

@uiw/react-native

Version:
15 lines (14 loc) 440 B
import React from 'react'; import { TextInput } from 'react-native'; import { Size, Color } from './index'; export interface ShowValueProps { size: Size; textInput: React.MutableRefObject<TextInput | undefined>; color: Color; value: string; disabled: boolean; width?: number; onChange: (val: number | 'min') => unknown; } declare function ShowValue(props: ShowValueProps): JSX.Element; export default ShowValue;