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