@wordpress/block-library
Version:
Block library for the WordPress editor.
22 lines (21 loc) • 432 B
JavaScript
/**
* 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