Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active February 16, 2020 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanaf1979/937ab58291c024124a6dc8ccb6077324 to your computer and use it in GitHub Desktop.
Save vanaf1979/937ab58291c024124a6dc8ccb6077324 to your computer and use it in GitHub Desktop.
Gist for my article: WordPress: Adding custom svg icons to your Gutenberg blocks/plugin. https://since1979.dev/wordpress-adding-custom-svg-icons-to-your-gutenberg-blocks-plugin/
import Sidebar from './components/sidebar.js';
import icons from './icons/icons.js'
const { registerPlugin } = wp.plugins;
registerPlugin("myplugin", {
icon: icons.github, // The Plugin icon
render: Sidebar
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment