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