import React from 'react'; import PropTypes from 'prop-types'; 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, }) => { return (