1
Replace the Arrow Tool
Provide a template for the Arrow Tool.Target the
button slot with your own custom template.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
import {
VeltArrowTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltArrowTool>
<button slot="button">Arrow</button>
</VeltArrowTool>
</>
);
}
<!doctype html>
<html lang="en">
<head>
<title>Arrow documentation</title>
</head>
<body>
<velt-user-invite-tool>
<button slot="button">Arrow</button>
</velt-user-invite-tool>
</body>
</html>
Replace the Velt Arrow Tool button and other elements using named slots to inject custom HTML and components into specific parts of the wireframe.
button slot with your own custom template.import {
VeltArrowTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltArrowTool>
<button slot="button">Arrow</button>
</VeltArrowTool>
</>
);
}
<!doctype html>
<html lang="en">
<head>
<title>Arrow documentation</title>
</head>
<body>
<velt-user-invite-tool>
<button slot="button">Arrow</button>
</velt-user-invite-tool>
</body>
</html>
Was this page helpful?
