import { faYoutube } from '@fortawesome/free-brands-svg-icons';
// import { faBell } from '@fortawesome/free-solid-svg-icons';
import { faBell } from '@fortawesome/free-regular-svg-icons';
...
export class AppComponent implements OnInit {
faYoutube = faYoutube;
faBell = faBell;
constructor() { }
ngOnInit(): void {
}
}
폰트어썸 사이트에서 아이콘을 클릭해보면 아래와 같이 class 이름이 나옵니다. 그리고 위 코드를 보면 import한 부분에 "import { faBell } from '@fortawesome/free-regular-svg-icons';"에서 "from '@fortawesome/free-regular-svg-icons'" 부분이 fa-reular 아이콘들을 가져왔다고 보면 되고, "faBell"부분이 벨 아이콘을 가져왔다고 생각하면 편합니다.
Error: node_modules/@angular/material/core/index.d.ts:794:21 - error TS2694: Namespace '"/Users/junhyeok/project/new/new-project/node_modules/@angular/core/core"' has no exported member 'ɵɵFactoryDeclaration'.