Reputation: 1093
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>
Upvotes: 3
Views: 5721
Reputation: 555
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>
Upvotes: 5