/** * External dependencies */ import { __, _x } from '@wordpress/i18n'; import { Path } from '@wordpress/components'; /** * Internal dependencies */ import edit from './edit'; import renderMaterialIcon from '../../../shared/render-material-icon'; import save from './save'; const attributes = { email: { type: 'string', default: '', }, }; export const name = 'email'; export const settings = { title: __( 'Email Address', 'jetpack' ), description: __( 'Lets you add an email address with an automatically generated click-to-email link.', 'jetpack' ), keywords: [ 'e-mail', // not translatable on purpose 'email', // not translatable on purpose _x( 'message', 'block search term', 'jetpack' ), ], icon: renderMaterialIcon( ), category: 'jetpack', attributes, edit, save, parent: [ 'jetpack/contact-info' ], };