import React from 'react'; import PropTypes from 'prop-types'; import {get} from 'lodash'; import {LineInput, Label, TextArea} from './'; import './style.scss'; /** * @ngdoc react * @name TextAreaInput * @description Component to multi-line text input with Field Label */ export const TextAreaInput: React.StatelessComponent = ({ field, value, label, onChange, autoHeight, autoHeightTimeout, nativeOnChange, placeholder, readOnly, maxLength, onFocus, ...props }) => (