woocommerce-paypal-payments/modules/ppcp-settings/resources/js/Components/ReusableComponents/SettingsBlocks/ControlTextInput.js
2025-01-22 15:32:22 +01:00

18 lines
384 B
JavaScript

import { TextControl } from '@wordpress/components';
import { Action } from '../Elements';
const ControlTextInput = ( { value, onChange, placeholder = '' } ) => {
return (
<Action>
<TextControl
className="ppcp-r-vertical-text-control"
placeholder={ placeholder }
value={ value }
onChange={ onChange }
/>
</Action>
);
};
export default ControlTextInput;