@wordpress/block-library
Version:
Block library for the WordPress editor.
25 lines (24 loc) • 460 B
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import edit from './edit';
export var name = 'core/tag-cloud';
export var settings = {
title: __('Tag Cloud'),
description: __('A cloud of your most used tags.'),
icon: 'tag',
category: 'widgets',
supports: {
html: false,
align: true
},
edit: edit,
save: function save() {
return null;
}
};
//# sourceMappingURL=index.js.map