25 lines
797 B
JavaScript
25 lines
797 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: {
|
|
foreground: "#136f63",
|
|
src: (
|
|
<svg width="100" height="100" viewBox="0 0 100 100">
|
|
<g stroke="null" id="svg_10" class="fills">
|
|
<path
|
|
stroke="null"
|
|
d="m3.74998,19.74151c0,-8.82607 7.16546,-15.99153 15.99153,-15.99153l60.51698,0c8.82607,0 15.99153,7.16546 15.99153,15.99153l0,60.51698c0,8.82607 -7.16546,15.99153 -15.99153,15.99153l-60.51698,0c-8.82607,0 -15.99153,-7.16546 -15.99153,-15.99153l0,-60.51698zm22.57628,3.44915l0,53.61867l23.67374,-18.7148l23.67374,18.7148l0,-53.61867l-47.34748,0z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
),
|
|
},
|
|
edit: Edit,
|
|
save,
|
|
});
|