25 lines
689 B
JavaScript
25 lines
689 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 version="1.1" x="0px" y="0px" viewBox="0 0 128 160">
|
|
<g>
|
|
<circle cx="67" cy="11" r="10" />
|
|
<circle cx="37" cy="21" r="10" />
|
|
<path d="M17,51v36h10v40h20h40h20V87h10V51c0-5.5-4.5-10-10-10L97,51v26H87v40H77V77h10V41c0-5.5-4.5-10-10-10L67,41L57,31 c-5.5,0-10,4.5-10,10v36h10v40H47V77H37V51L27,41C21.5,41,17,45.5,17,51z" />
|
|
<circle cx="97" cy="21" r="10" />
|
|
</g>
|
|
</svg>
|
|
),
|
|
foreground: "#DF1E1E",
|
|
},
|
|
edit: Edit,
|
|
save,
|
|
});
|