import {
  VeltCommentTool
} from '@veltdev/react';

export default function App() {

  return (
    <>

      <VeltCommentTool>
        <div slot="button">
          <img src="..." />
        </div>
      </VeltCommentTool>

    </>
  );
}
  • React / Next.js

  • HTML

1

Provide a template for the Comment Tool.

Target the button slot with your own custom template.

<VeltCommentTool>
  <div slot="button">
    <img src="..." />
  </div>
</VeltCommentTool>