UNPKG

6.82 kBMarkdownView Raw
1<a href="https://fontawesome.com">
2 <img align="right" width="100" height="100" alt="Official Javascript Component" src="https://img.fortawesome.com/349cfdf6/official-javascript-component.svg">
3</a>
4
5# angular-fontawesome
6
7[![npm](https://img.shields.io/npm/v/@fortawesome/angular-fontawesome.svg?style=flat-square)](https://www.npmjs.com/package/@fortawesome/angular-fontawesome)
8
9Official Angular component for Font Awesome 5+
10
11## Installation
12
13If you have [FontAwesome Pro](https://fontawesome.com/plans) subscription, make sure to [configure access](https://fontawesome.com/docs/web/setup/packages#_1-configure-access) before following the installation instructions.
14
15Using `ng add`:
16
17```
18# See Compatibility table below to choose a correct version
19$ ng add @fortawesome/angular-fontawesome@<version>
20```
21
22Using [Yarn](https://yarnpkg.com)
23```
24$ yarn add @fortawesome/fontawesome-svg-core
25$ yarn add @fortawesome/free-solid-svg-icons
26# See Compatibility table below to choose a correct version
27$ yarn add @fortawesome/angular-fontawesome@<version>
28```
29
30Using [NPM](https://www.npmjs.com/)
31```
32$ npm install @fortawesome/fontawesome-svg-core
33$ npm install @fortawesome/free-solid-svg-icons
34# See Compatibility table below to choose a correct version
35$ npm install @fortawesome/angular-fontawesome@<version>
36```
37
38### Compatibility table
39
40|@fortawesome/angular-fontawesome|Angular|Font Awesome|ng-add|
41|-|-|-|-|
42|0.1.x|5.x|5.x|not supported|
43|0.2.x|6.x|5.x|not supported|
44|0.3.x|6.x && 7.x|5.x|not supported|
45|0.4.x, 0.5.x|8.x|5.x|not supported|
46|0.6.x|9.x|5.x|supported|
47|0.7.x|10.x|5.x|supported|
48|0.8.x|11.x|5.x|supported|
49|0.9.x|12.x|5.x|supported|
50|0.10.x|13.x|5.x && 6.x|supported|
51|0.11.x|14.x|5.x && 6.x|supported|
52|0.12.x|15.x|5.x && 6.x|supported|
53|0.13.x|16.x|5.x && 6.x|supported|
54|0.14.x|17.x|5.x && 6.x|supported|
55
56## Usage
57
58To get up and running using Font Awesome with Angular follow the below steps:
59
601. Add `FontAwesomeModule` to the `imports` and tie the icon to the property in your component
61`src/app/app.component.ts`:
62
63 ```typescript
64 import { Component } from '@angular/core';
65 import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
66 import { faCoffee } from '@fortawesome/free-solid-svg-icons';
67
68 @Component({
69 selector: 'app-root',
70 standalone: true,
71 imports: [FontAwesomeModule], // alternatively, individual components can be imported
72 templateUrl: './app.component.html'
73 })
74 export class AppComponent {
75 faCoffee = faCoffee;
76 }
77 ```
78
791. Use the icon in the template
80`src/app/app.component.html`:
81
82 ```html
83 <fa-icon [icon]="faCoffee"></fa-icon>
84 ```
85
86## Documentation
87
88* [In-depth usage guide](./docs/usage.md)
89* [Using other styles](./docs/usage/using-other-styles.md)
90* [Full feature list](./docs/usage/features.md)
91* [Upgrading instructions](UPGRADING.md)
92
93## Examples
94
95### Stackblitz
96Here's a [StackBlitz Starter Sample](https://stackblitz.com/edit/angular-ivy-7jrcne) on how to display Solid, Regular, and Brand icons [using the Icon Library](./docs/usage/icon-library.md#using-the-icon-library).
97
98
99### Demo application
100You can find examples in the `projects/demo` directory. You can follow [the docs to run the demo app](./DEVELOPER.md#setting-up-the-local-environment) on your own machine.
101
102## Contributing
103`angular-fontawesome` is a product of the community, you can take a look at the [developer docs](./DEVELOPER.md) to find about more on how to contribute back to the project.
104
105## Contributors
106
107The following contributors have either helped to start this project, have contributed
108code, are actively maintaining it (including documentation), or in other ways
109being awesome contributors to this project. **We'd like to take a moment to recognize them.**
110
111[<img src="https://github.com/devoto13.png?size=72" alt="devoto13" width="72">](https://github.com/devoto13)
112[<img src="https://github.com/zeevkatz.png?size=72" alt="zeevkatz" width="72">](https://github.com/zeevkatz)
113[<img src="https://github.com/scttcper.png?size=72" alt="scttcper" width="72">](https://github.com/scttcper)
114[<img src="https://github.com/DavidePastore.png?size=72" alt="DavidePastore" width="72">](https://github.com/DavidePastore)
115[<img src="https://github.com/donmckenna.png?size=72" alt="donmckenna" width="72">](https://github.com/donmckenna)
116[<img src="https://github.com/paustint.png?size=72" alt="paustint" width="72">](https://github.com/paustint)
117[<img src="https://github.com/mzellho.png?size=72" alt="mzellho" width="72">](https://github.com/mzellho)
118[<img src="https://github.com/elebitzero.png?size=72" alt="elebitzero" width="72">](https://github.com/elebitzero)
119[<img src="https://github.com/mcenkar.png?size=72" alt="mcenkar" width="72">](https://github.com/mcenkar)
120[<img src="https://github.com/SiddAjmera.png?size=72" alt="SiddAjmera" width="72">](https://github.com/SiddAjmera)
121[<img src="https://github.com/stephaniepurvis.png?size=72" alt="stephaniepurvis" width="72">](https://github.com/stephaniepurvis)
122[<img src="https://github.com/loicgasser.png?size=72" alt="loicgasser" width="72">](https://github.com/loicgasser)
123[<img src="https://github.com/damienwebdev.png?size=72" alt="damienwebdev" width="72">](https://github.com/damienwebdev)
124[<img src="https://github.com/ronniebarker.png?size=72" alt="ronniebarker" width="72">](https://github.com/ronniebarker)
125[<img src="https://github.com/bhanuhiteshi.png?size=72" alt="bhanuhiteshi" width="72">](https://github.com/bhanuhiteshi)
126[<img src="https://github.com/MrSuttonmann.png?size=72" alt="MrSuttonmann" width="72">](https://github.com/MrSuttonmann)
127[<img src="https://github.com/ej2.png?size=72" alt="ej2" width="72">](https://github.com/ej2)
128[<img src="https://github.com/peterblazejewicz.png?size=72" alt="peterblazejewicz" width="72">](https://github.com/peterblazejewicz)
129[<img src="https://github.com/arjenbrandenburgh.png?size=72" alt="arjenbrandenburgh" width="72">](https://github.com/arjenbrandenburgh)
130[<img src="https://github.com/athisun.png?size=72" alt="athisun" width="72">](https://github.com/athisun)
131[<img src="https://github.com/madebyjeffrey.png?size=72" alt="madebyjeffrey" width="72">](https://github.com/madebyjeffrey)
132[<img src="https://github.com/benjamincharity.png?size=72" alt="benjamincharity" width="72">](https://github.com/benjamincharity)
133[<img src="https://github.com/NayeBeckham.png?size=72" alt="NayeBeckham" width="72">](https://github.com/NayeBeckham)
134[<img src="https://github.com/Nosfistis.png?size=72" alt="Nosfistis" width="72">](https://github.com/Nosfistis)
135[<img src="https://github.com/FortAwesome.png?size=72" alt="Font Awesome Team" width="72">](https://github.com/orgs/FortAwesome/people)
136
137If we've missed someone (which is quite likely) submit a Pull Request to us and we'll get it resolved.