UNPKG

@wordpress/block-library

Version:
22 lines (21 loc) 432 B
/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import edit from './edit'; export var name = 'core/search'; export var settings = { title: __('Search'), description: __('Help visitors find your content.'), icon: 'search', category: 'widgets', keywords: [__('find')], edit: edit, save: function save() { return null; } }; //# sourceMappingURL=index.js.map