Custom Render Tools

Property

  • customRenderTools

Purpose

  • Provide a way to create custom Preview tool buttons
{
  customBuildTools: [
    {
      buttonText: 'Surprise Me',
      onClick: (params) => {
        return `<marquee>✨ Alive and kicking! ✨</marquee>`;
      }
    }
  ],
}