@wordpress/block-library
Version:
Block library for the WordPress editor.
19 lines (18 loc) • 393 B
JavaScript
import { commentEditLink as icon } from "@wordpress/icons";
import initBlock from "../utils/init-block";
import metadata from "./block.json";
import edit from "./edit";
const { name } = metadata;
const settings = {
icon,
edit,
example: {}
};
const init = () => initBlock({ name, metadata, settings });
export {
init,
metadata,
name,
settings
};
//# sourceMappingURL=index.js.map