I have been given the task of changing the cursor to a FontAwsome icon. After doing some research I know that you can pass a .png
file to the cursor style like this:
<Component
style={{ cursor: 'url(images/special.png),auto' }}
/>
But what I would like to do is something like this (in pseudo code):
<Component
style={{ cursor: <FontAwesomeIcon icon={faAngleDown} size="md" /> }}
/>
Is there a way to do this or is a viable workaround to get the svg of the icon from FontAwesome and convert is to a .png and store that file as a graphic asset?