@wordpress/block-library
Version:
Block library for the WordPress editor.
30 lines (20 loc) • 389 B
JavaScript
/**
* 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;
},
};