Hi there,
I cannot get the icons to work in my react app, neither as <Icon />
component, nor in other components such as <Link />
What I tried:
Installed framework7-icons
from npm
manually added fonts directory from the source on github and added the css code
Tried to run this code in my component:
<Link
iconIos="f7:arrow_up_circle_fill"
iconAurora="f7:arrow_up_circle_fill"
iconMd="material:send"
slot="inner-end"
onClick={event => this.sendMessage(event)}
>
</Link>
At the end, instead of icons, it just shows the text that is supposedly the class name of the icon font.
So what am I missing?