I'm trying to create a Webapp with Angular 7 and Nebular.
Therefore I used schematics to install Nebular:
ng add @nebular/theme
So I do have nebular-icons within my node_modules and included in my package.json as dependency:
"dependencies": {
...
"nebular-icons": "^1.1.0",
...
},
I also tried to add nebular-icons to styles in angular.json:
"styles": [
"src/styles.scss",
"node_modules/nebular-icons/scss/nebular-icons.scss"
],
Now if I try to use an icon, it still won't show up. For example:
<nb-layout-header subheader>
<nb-actions>
<nb-action icon="nb-home"></nb-action>
<nb-action icon="nb-search"></nb-action>
<nb-action icon="nb-edit"></nb-action>
</nb-actions>
</nb-layout-header>
Unfortunately, the icons don't show up. I can only see the lines ("|") that separate the icons of nb-actions, but not the icons themselves.
Thanks for your help!