Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.velt.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

1

Replace the Arrow Tool

Provide a template for the Arrow Tool.Target the button slot with your own custom template.
import {
  VeltArrowTool
} from '@veltdev/react';

export default function App() {

  return (
    <>

      <VeltArrowTool>
        <button slot="button">Arrow</button>
      </VeltArrowTool>

    </>
  );
}