/** * External dependencies */ import { __, _x } from '@wordpress/i18n'; import { Path, SVG } from '@wordpress/components'; /** * Internal dependencies */ import edit from './edit'; // Ordering is important! Editor overrides style! import './style.scss'; import './editor.scss'; export const name = 'gif'; export const title = __( 'GIF', 'jetpack' ); export const icon = ( ); export const settings = { title, icon, category: 'jetpack', keywords: [ _x( 'animated', 'block search term', 'jetpack' ), _x( 'giphy', 'block search term', 'jetpack' ), _x( 'image', 'block search term', 'jetpack' ), ], description: __( 'Search for and insert an animated image.', 'jetpack' ), attributes: { align: { type: 'string', default: 'center', }, caption: { type: 'string', }, giphyUrl: { type: 'string', }, searchText: { type: 'string', }, paddingTop: { type: 'string', default: '56.2%', }, }, supports: { html: false, align: true, }, edit, save: () => null, };