PluginProbe
Sendy / 3.4.6
Sendy v3.4.6
3.4.6 3.4.7 trunk 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 All 32 releases
sendy / src / index.js

index.js in Sendy 3.4.6, at src/index.js

17 lines 379 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { registerBlockType } from '@wordpress/blocks';
2 import { SVG } from '@wordpress/components';
3 import { Edit } from './edit';
4 import metadata from './block.json';
5
6 registerBlockType(metadata, {
7 icon: {
8 src: (
9 <SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
10 // Add SVG for your block icon
11 </SVG>
12 ),
13 foreground: '#874FB9',
14 },
15 edit: Edit,
16 });
17