UNPKG

@wordpress/block-library

Version:
34 lines (23 loc) 448 B
/** * 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; }, };