/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { ExternalLink, Path, SVG } from '@wordpress/components'; import { Fragment } from '@wordpress/element'; /** * Internal dependencies */ import edit from './edit'; import { DEFAULT_FORMAT } from './constants'; export const name = 'wordads'; export const title = __( 'Ad', 'jetpack' ); export const icon = ( ); export const settings = { title, description: (

{ __( 'Earn income by adding high quality ads to your post', 'jetpack' ) }

{ __( 'Learn all about WordAds', 'jetpack' ) }
), icon, attributes: { align: { type: 'string', default: 'center', }, format: { type: 'string', default: DEFAULT_FORMAT, }, hideMobile: { type: 'boolean', default: false, }, }, category: 'jetpack', keywords: [ __( 'ads', 'jetpack' ), 'WordAds', __( 'Advertisement', 'jetpack' ) ], supports: { align: [ 'left', 'center', 'right' ], alignWide: false, className: false, customClassName: false, html: false, reusable: false, }, edit, save: () => null, };