Use FontAwesome in Svelte

Hello, i’m trying to integrate FA5 to F7 Svelte but i cant make the icon to work, There’s a way to do this?

<NavLeft>
  <Link iconIos="fa:money" iconAurora="fa:money" iconMd="fa:money" panelOpen="left" />
</NavLeft>

i’ve already linked my FA5 kit with js

There is no support for fa icons. Just use classes directly, probably like:

<Link icon="fa fa-money" panelOpen="left" />
1 Like