summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/extensions/blocks/contact-form/components/jetpack-field-label.js')
-rw-r--r--plugins/jetpack/extensions/blocks/contact-form/components/jetpack-field-label.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/plugins/jetpack/extensions/blocks/contact-form/components/jetpack-field-label.js b/plugins/jetpack/extensions/blocks/contact-form/components/jetpack-field-label.js
deleted file mode 100644
index 0ee3d7ba..00000000
--- a/plugins/jetpack/extensions/blocks/contact-form/components/jetpack-field-label.js
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * External dependencies
- */
-import { __ } from '@wordpress/i18n';
-import { PlainText } from '@wordpress/editor';
-import { ToggleControl } from '@wordpress/components';
-
-const JetpackFieldLabel = ( { setAttributes, label, resetFocus, isSelected, required } ) => {
- return (
- <div className="jetpack-field-label">
- <PlainText
- value={ label }
- className="jetpack-field-label__input"
- onChange={ value => {
- resetFocus && resetFocus();
- setAttributes( { label: value } );
- } }
- placeholder={ __( 'Write label…', 'jetpack' ) }
- />
- { isSelected && (
- <ToggleControl
- label={ __( 'Required', 'jetpack' ) }
- className="jetpack-field-label__required"
- checked={ required }
- onChange={ value => setAttributes( { required: value } ) }
- />
- ) }
- { ! isSelected && required && (
- <span className="required">{ __( '(required)', 'jetpack' ) }</span>
- ) }
- </div>
- );
-};
-
-export default JetpackFieldLabel;