/** * External dependencies */ import PropTypes from 'prop-types'; import classnames from 'classnames'; import { useState } from '@wordpress/element'; import withComponentId from '@woocommerce/base-hocs/with-component-id'; /** * Internal dependencies */ import Label from '../label'; import './style.scss'; const TextInput = ( { className, componentId, id, type = 'text', ariaLabel, label, screenReaderLabel, disabled, help, value = '', onChange, } ) => { const [ isActive, setIsActive ] = useState( false ); const onChangeValue = ( event ) => onChange( event.target.value ); const textInputId = id || componentId; return (
{ help }
) }