NathanWalker / nativescript-fonticon

Use custom font icon collections seamlessly with NativeScript.
50 stars 47 forks source link

how to integrate with scss #25

Open prashantnirgun opened 5 years ago

prashantnirgun commented 5 years ago

Hi I am using nativescript vue and want to integrate fontawesome can anyone help me please. I download fontawesome-webfont.ttf and kept inside ~/fonts also added following lines to \app\app.scss

@font-face {
  font-family: "font-awesome";
  src: url("~/fonts/fontawesome-webfont.ttf") format("truetype");
}

and in code I am using


<Button text="&#f006;" class="font-awesome" />```
prashantnirgun commented 5 years ago

please close i resolved this .fa { font-family: FontAwesome, fontawesome-webfont; font-size: 40; } and it works