I'm working with a bootstrap button
<button class="btn btn-primary">Login</button>
My goal is to change the cursor to a pointer (hand) on this button when it's not disabled, instead of the default arrow.
The disabled property of the button is controlled by a variable in my Angular component
<button class="btn btn-primary" [disabled]="user==undefined">Login</button>