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