UNPKG

@wordpress/block-library

Version:
22 lines (21 loc) 484 B
// packages/block-library/src/comments-title/index.js import { title as icon } from "@wordpress/icons"; import initBlock from "../utils/init-block"; import metadata from "./block.json"; import edit from "./edit"; import deprecated from "./deprecated"; var { name } = metadata; var settings = { icon, edit, deprecated, example: {} }; var init = () => initBlock({ name, metadata, settings }); export { init, metadata, name, settings }; //# sourceMappingURL=index.js.map