UNPKG

@wordpress/block-library

Version:
25 lines (24 loc) 530 B
// packages/block-library/src/read-more/index.js import { __ } from "@wordpress/i18n"; import { link as icon } from "@wordpress/icons"; import initBlock from "../utils/init-block.mjs"; import metadata from "./block.json"; import edit from "./edit.mjs"; var { name } = metadata; var settings = { icon, edit, example: { attributes: { content: __("Read more") } } }; var init = () => initBlock({ name, metadata, settings }); export { init, metadata, name, settings }; //# sourceMappingURL=index.mjs.map