Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / inputs / TextArea / TextArea.d.ts
Size: Mime:
import React from 'react';
import { TextAreaProps } from './typings';
declare class TextArea extends React.PureComponent<TextAreaProps> {
    static defaultProps: {
        maxLength: number;
        className: string;
        placeholder: string;
        nowrap: boolean;
    };
    render(): JSX.Element;
}
export default TextArea;
export { TextArea };