25 lines
819 B
JavaScript
25 lines
819 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 21 21">
|
|
<g id="Calque_1-2" data-name="Calque 1">
|
|
<path
|
|
class="cls-1"
|
|
d="m16,11.3v2.1l-1.5-1.5c-1.1-1-2.8-1-3.9,0l-.7.7-2.5-2.5c-1.1-1-2.8-1-3.9,0l-1.5,1.5v-5.6c0-.6.4-1,1-1h8.7c.5-1.1,1.6-1.7,2.8-1.4v-.6H3c-1.7,0-3,1.3-3,3v12c0,1.7,1.3,3,3,3h12c1.7,0,3-1.3,3-3v-6.7c-.6.3-1.4.3-2,0Zm4.7-6h0c-.4-.4-1-.4-1.4,0h0l-1.3,1.3V1c0-.6-.4-1-1-1s-1,.4-1,1v5.6l-1.3-1.3c-.4-.4-1-.4-1.4,0s-.4,1,0,1.4l3,3c.4.4,1,.4,1.4,0h0l3-3c.4-.4.4-1,0-1.4Z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
),
|
|
foreground: "#DF1E1E",
|
|
},
|
|
edit: Edit,
|
|
save,
|
|
});
|