UNPKG

@wordpress/block-library

Version:
25 lines (24 loc) 521 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"; import metadata from "./block.json"; import edit from "./edit"; 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.js.map