I am using React font-awesome, by importing the icons objects.
I want to add a notification icon.
This is working good:
import {faBell} from '@fortawesome/free-solid-svg-icons'
....
<FontAwesomeIcon icon={faBell} />
But when I am trying to get the equivalent of this (Bell-on) I cannot import it, and when I'm looking on the package's library it doesn't appear there.
I have tried to change some methods of using the package, but nothing helped.
Am I missing something, maybe I need to add some property for get this "on" view, or this font isn't available for ReactFontAwesome?