I'm using the ng-carousel https://github.com/ng-bootstrap/ng-bootstrap/blob/master/src/carousel/carousel.ts and I want to have different prev/next icons. I'm interested in using the font-awesome ones as opposed to the ones that are there by default. Is it possible to change the template css classes that are used somehow or do I have to extend that component and write my own template (like suggested here Angular2: How to override components template?)?
Thanks
UPDATE:
Perhaps I need to rephrase the question:
I'd like to do the equivalent of changing/swapping CSS classes:
.carousel-control-prev-icon {
/* extend FontAwesome left chevron*/
@extend .fa-chevron-left;
}
but I'm not using Sass.