UNPKG

@wordpress/block-library

Version:
30 lines (20 loc) 389 B
/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import edit from './edit'; export const name = 'core/search'; export const settings = { title: __( 'Search' ), description: __( 'Help visitors find your content.' ), icon: 'search', category: 'widgets', keywords: [ __( 'find' ) ], edit, save() { return null; }, };