@playcanvas/pcui
Version:
User interface component library for the web
11 lines (10 loc) • 372 B
TypeScript
import { Element } from '../Element/component';
import { TextAreaInputArgs } from './index';
/**
* The TextAreaInput wraps a textarea element. It has the same interface as TextInput.
*/
declare class TextAreaInput extends Element<TextAreaInputArgs, any> {
constructor(props: TextAreaInputArgs);
render(): import("react").JSX.Element;
}
export { TextAreaInput };