45 lines
1.7 KiB
JavaScript
45 lines
1.7 KiB
JavaScript
import { registerBlockType } from "@wordpress/blocks";
|
|
import "./style.scss";
|
|
import metadata from "./block.json";
|
|
|
|
import Edit from "./edit";
|
|
import Save from "./save";
|
|
|
|
import { navigation } from "@wordpress/icons";
|
|
|
|
registerBlockType(metadata.name, {
|
|
title: metadata.title,
|
|
icon: {
|
|
foreground: "#DF1E1E",
|
|
src: (
|
|
<svg
|
|
version="1.1"
|
|
viewBox="0 0 50800 63500"
|
|
x="0px"
|
|
y="0px"
|
|
fill-rule="evenodd"
|
|
clip-rule="evenodd"
|
|
>
|
|
<defs>
|
|
<style type="text/css"></style>
|
|
</defs>
|
|
<g>
|
|
<path
|
|
class="fil0"
|
|
d="M34027 25667c-2015,1921 -4758,3103 -7780,3103 -3022,0 -5765,-1182 -7780,-3103 -347,-86 -694,-171 -1031,-214 -337,-43 -663,-43 -967,4 -303,46 -583,140 -910,257 -327,116 -700,256 -1167,536 -466,280 -1027,700 -1563,1401 -537,699 -1050,1680 -1517,2847 -467,1166 -887,2520 -1120,3827 -233,1306 -280,2567 -303,3523 -24,957 -24,1611 70,2241 93,630 279,1236 700,1843 420,607 1073,1214 1843,1680 770,467 1657,794 2871,957 1213,163 2753,163 4620,163l5414 0 840 0 840 0 5414 0c1867,0 3407,0 4620,-163 1214,-163 2101,-490 2871,-957 770,-466 1423,-1073 1843,-1680 421,-607 607,-1213 700,-1843 94,-630 94,-1284 70,-2241 -23,-956 -70,-2217 -303,-3523 -233,-1307 -653,-2661 -1120,-3827 -467,-1167 -980,-2148 -1517,-2847 -536,-701 -1097,-1121 -1563,-1401 -467,-280 -840,-420 -1167,-536 -327,-117 -607,-211 -910,-257 -304,-47 -630,-47 -967,-4 -337,43 -684,128 -1031,214z"
|
|
/>
|
|
<path
|
|
class="fil0"
|
|
d="M26247 26670c4949,0 8961,-4012 8961,-8961 0,-4949 -4012,-8961 -8961,-8961 -4949,0 -8961,4012 -8961,8961 0,4949 4012,8961 8961,8961z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
),
|
|
},
|
|
|
|
supports: metadata.supports,
|
|
attributes: metadata.attributes,
|
|
edit: Edit,
|
|
save: Save,
|
|
});
|