UNPKG

389 BJavaScriptView Raw
1/**
2 * WordPress dependencies
3 */
4import { __ } from '@wordpress/i18n';
5
6/**
7 * Internal dependencies
8 */
9import edit from './edit';
10
11export const name = 'core/search';
12
13export const settings = {
14 title: __( 'Search' ),
15
16 description: __( 'Help visitors find your content.' ),
17
18 icon: 'search',
19
20 category: 'widgets',
21
22 keywords: [ __( 'find' ) ],
23
24 edit,
25
26 save() {
27 return null;
28 },
29};