UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

17 lines (16 loc) 636 B
/// <reference types="react" /> import BaseInput from "./BaseInput"; /** * @description: a wrapper for Text Input component to create enclosed text area * @extends: TextInput * @extendslink: https://facebook.github.io/react-native/docs/textinput.html * @modifiers: Typography * @gif: https://media.giphy.com/media/3oFzmoU8TdfHeYZNZu/giphy.gif * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/InputsScreen.js */ export default class TextArea extends BaseInput { static displayName: string; static propTypes: any; generateStyles(): void; render(): JSX.Element; }