I am a beginner in fluent-UI with react (@fluentui/react-northstar 0.47.0)
I tried different solutions but couldn't solve this result. Kindly guide me here.
Currently, when I hover mouse on the icon it turned filled but I want to keep them outline either I hover the mouse or not.
Here is my observation, Fluent-UI render Icon on run-time like
<span>
<svg role-"img" data-aa-class="Icon">
<g>
<path class="ui-icon__filled" d="M16.707 ..."></path>
<path class="ui-icon__outline" d="M16.707 ..."></path>
</g>
</svg>
</span>
This render on run time, I tried to achieve through CSS but couldn't. Anyone who knows about this