import React from 'react'; import PropTypes from 'prop-types'; import cn from 'classnames'; import styles from './InputField.css'; import ErrorMessage from './ErrorMessage'; import { Icon } from 'plugin-api/beta/client/components/ui'; const InputField = ({ id = '', label = '', type = 'text', name = '', onChange = () => {}, value = '', showError = true, hasError = false, errorMsg = '', children, columnDisplay = false, showSuccess = true, validationType = '', }) => { return (