@wordpress/block-library
Version:
Block library for the WordPress editor.
25 lines (24 loc) • 491 B
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import edit from './edit';
export var name = 'core/calendar';
export var settings = {
title: __('Calendar'),
description: __('A calendar of your site’s posts.'),
icon: 'calendar',
category: 'widgets',
keywords: [__('posts'), __('archive')],
supports: {
align: true
},
edit: edit,
save: function save() {
return null;
}
};
//# sourceMappingURL=index.js.map