UNPKG

@wordpress/block-library

Version:
25 lines (24 loc) 480 B
/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import edit from './edit'; export var name = 'core/rss'; export var settings = { title: __('RSS'), description: __('Display entries from any RSS or Atom feed.'), icon: 'rss', category: 'widgets', keywords: [__('atom'), __('feed')], supports: { html: false }, edit: edit, save: function save() { return null; } }; //# sourceMappingURL=index.js.map