How do I change the Cursor pointer style on MUI Link? It does not recognize style input below.
<Link
style={{ cursor: 'pointer' }}
onClick={() => {
getTemplate();
}}
</Link>
The default cursor for Link is "pointer". You can try some other cursor and you should notice the difference.
<Link
style={{ cursor: 'crosshair' }}
onClick={() => {
getTemplate();
}}
</Link>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With