summaryrefslogtreecommitdiff
blob: 17c51924d7cd4e8ed3245f545594097a676afc53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * 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 = {
	phone: {
		type: 'string',
		default: '',
	},
};

export const name = 'phone';

export const settings = {
	title: __( 'Phone Number', 'jetpack' ),
	description: __(
		'Lets you add a phone number with an automatically generated click-to-call link.',
		'jetpack'
	),
	keywords: [
		_x( 'mobile', 'block search term', 'jetpack' ),
		_x( 'telephone', 'block search term', 'jetpack' ),
		_x( 'cell', 'block search term', 'jetpack' ),
	],
	icon: renderMaterialIcon(
		<Path d="M6.54 5c.06.89.21 1.76.45 2.59l-1.2 1.2c-.41-1.2-.67-2.47-.76-3.79h1.51m9.86 12.02c.85.24 1.72.39 2.6.45v1.49c-1.32-.09-2.59-.35-3.8-.75l1.2-1.19M7.5 3H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.49c0-.55-.45-1-1-1-1.24 0-2.45-.2-3.57-.57-.1-.04-.21-.05-.31-.05-.26 0-.51.1-.71.29l-2.2 2.2c-2.83-1.45-5.15-3.76-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1z" />
	),
	category: 'jetpack',
	attributes,
	parent: [ 'jetpack/contact-info' ],
	edit,
	save,
};