wp.domReady(function() { var el = wp.element.createElement; var Button = wp.components.Button; var SVGIcon = el('svg', { xmlns: "http://www.w3.org/2000/svg", width: "32px", height: "32px", viewBox: "0 -2 24 24", dangerouslySetInnerHTML: { __html: '' } }); // Register the custom button in the Gutenberg editor wp.plugins.registerPlugin('borderless-ai-button', { render: function() { return el(wp.editPost.PluginPostStatusInfo, {}, el(Button, { className: 'ai-button', isPrimary: true, onClick: function() { window.open('https://visualmodo.com/artificial-intelligence', '_blank'); }, icon: SVGIcon }, 'Generate with Visualmodo AI') ); } }); });