import React from 'react'; import type { IFormInputProps, OmitControlledInputPropsFrom } from './interface'; import { orEmptyString, validationClassName } from './utils'; interface ITextAreaInputProps extends IFormInputProps, OmitControlledInputPropsFrom> { inputClassName?: string; } export class TextAreaInput extends React.Component { public render() { const { value, validation, inputClassName, ...otherProps } = this.props; const className = `TextAreaInput form-control ${orEmptyString(inputClassName)} ${validationClassName(validation)}`; return