@uiw/react-native
Version:
UIW for React Native
15 lines (14 loc) • 440 B
TypeScript
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;