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. Feedback Mode
By default the component will be in Feedback mode. This will make your component say “Give feedback” and have a heart icon.2. Report Bugs Mode
To enable Report Bugs mode, set the type attribute to reportBug. This will make your component say “Report bugs” and have a bug icon.<VeltUserRequestTool type="reportBug"/>
To enable Contact Us mode, set the type attribute to ‘contactUs`. This will make your component say “Contact us” and have an email icon.<VeltUserRequestTool type="contactUs"/>
1. Feedback Mode
By default the component will be in Feedback mode. This will make your component say “Give feedback” and have a heart icon.<velt-user-request-tool></velt-user-request-tool>
2. Report Bugs Mode
To enable Report Bugs mode, set the type attribute to reportBug. This will make your component say “Report bugs” and have a bug icon.<velt-user-request-tool type="reportBug"></velt-user-request-tool>
To enable Contact Us mode, set the type attribute to ‘contactUs`. This will make your component say “Contact us” and have an email icon.<velt-user-request-tool type="contactUs"></velt-user-request-tool>
import { VeltUserRequestTool } from '@veltdev/react';
function YourComponent() {
return (
<div>
<VeltUserRequestTool /> {/* Feedback Mode */}
<VeltUserRequestTool type="reportBug"/> {/* Report Bug Mode */}
<VeltUserRequestTool type="contactUs"/> {/* Contact Us Mode */}
</div>
)
}