homegrade_blocks_production/blocks/content-heading/src/index.js

28 lines
502 B
JavaScript

import { registerBlockType } from "@wordpress/blocks";
import "./style.scss";
import Edit from "./edit";
import save from "./save";
import metadata from "./block.json";
registerBlockType(metadata.name, {
icon: {
src: (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
aria-hidden="true"
focusable="false"
>
<path d="M6.2 5.2v13.4l5.8-4.8 5.8 4.8V5.2z"></path>
</svg>
),
foreground: "#DF1E1E",
},
edit: Edit,
save,
});