I'm currently using BluePrint JS button in ReactJS and I use the button to navigate through the React app (so each nav link is a button). However right now, I cannot use scroll-button click on the button to navigate to another page on a new tab. I also cannot right click on the button to open in a new tab as there isn't an option in the right click menu that says "Open in a New Tab".
The button looks something like this currently:
import { Button } from "@blueprintjs/core";
<Button
className={Classes.MINIMAL}
icon="document"
text="About"
onClick={() => navigate("/about")}
/>