我不能在组件中使用字体超棒的品牌图标 我尝试导入它,但是没有任何图标。
import {faTelegram} from "@fortawesome/angular-fontawesome"; // Has no exported member
但是我们可以看到fontawesome-5中提供了品牌图标 https://fontawesome.com/icons/telegram?style=brands
我如何使用此图标!?
答案 0 :(得分:1)
在Angular中有很多使用FontAwesome的方法,我建议您使用npm,这是官方指南。 Link here
答案 1 :(得分:1)
帮自己一个忙,至少请阅读该文档的首页。
品牌是从
导入的'@fortawesome/free-brands-svg-icons' // or pro-brands-svg-icons
The documentation (first page)有一个深入的使用示例
import { faTwitter } from '@fortawesome/free-brands-svg-icons';
// Add an icon to the library for convenient access in other components
library.add(faTwitter);
<fa-icon [icon]="['fab', 'twitter']"></fa-icon>