UNPKG

@wordpress/block-library

Version:
30 lines (29 loc) 618 B
import { separator as icon } from "@wordpress/icons"; import initBlock from "../utils/init-block"; import edit from "./edit"; import metadata from "./block.json"; import save from "./save"; import transforms from "./transforms"; import deprecated from "./deprecated"; const { name } = metadata; const settings = { icon, example: { attributes: { customColor: "#065174", className: "is-style-wide" } }, transforms, edit, save, deprecated }; const init = () => initBlock({ name, metadata, settings }); export { init, metadata, name, settings }; //# sourceMappingURL=index.js.map