import PropTypes from 'prop-types'; import { clsm } from '../../../../../../utils'; import { INPUT_BASE_CLASSES, INPUT_ERROR_CLASSES } from '../../../../../../components/Input/InputTheme'; import InputErrorMessage from '../../../../../../components/Input/InputErrorMessage'; import Label from '../../../../../../components/Input/InputLabel'; const StreamManagerActionTextArea = ({ cols, dataKey, error, label, name, onChange, placeholder, rows, value }) => { const handleOnChange = ({ target }) => { onChange({ [dataKey]: target.value }); }; return (
{label &&