Is there a way to change the mouse pointer when the mouse moves over the canvas component?

You could also do this with a role on the canvas element.

Create a role called canvas-crosshair, then add the following to your theme.css

.anvil-role-canvas-crosshair: {
    cursor: crosshair;
}
2 Likes