1.0.0 • Published 1 year ago

@libertymp/angular-fontawesome v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

angular-fontawesome

npm

Official Angular component for Font Awesome 5+

Installation

Using ng add:

# See Compatibility table below to choose a correct version
$ ng add @fortawesome/angular-fontawesome@<version>

Using Yarn

$ yarn add @fortawesome/fontawesome-svg-core
$ yarn add @fortawesome/free-solid-svg-icons
# See Compatibility table below to choose a correct version
$ yarn add @fortawesome/angular-fontawesome@<version>

Using NPM

$ npm install @fortawesome/fontawesome-svg-core
$ npm install @fortawesome/free-solid-svg-icons
# See Compatibility table below to choose a correct version
$ npm install @fortawesome/angular-fontawesome@<version>

Compatibility table

@fortawesome/angular-fontawesomeAngularFont Awesomeng-add
0.1.x5.x5.xnot supported
0.2.x6.x5.xnot supported
0.3.x6.x && 7.x5.xnot supported
0.4.x, 0.5.x8.x5.xnot supported
0.6.x9.x5.xsupported
0.7.x10.x5.xsupported
0.8.x11.x5.xsupported
0.9.x12.x5.xsupported
0.10.x13.x5.x && 6.xsupported

Usage

To get up and running using Font Awesome with Angular follow below steps:

  1. Add FontAwesomeModule to imports in src/app/app.module.ts:

    ```typescript
    import { BrowserModule } from '@angular/platform-browser';
    import { NgModule } from '@angular/core';
    
    import { AppComponent } from './app.component';
    import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
    
    @NgModule({
      imports: [
        BrowserModule,
        FontAwesomeModule
      ],
      declarations: [AppComponent],
      bootstrap: [AppComponent]
    })
    export class AppModule { }
    ```
  2. Tie the icon to the property in your component src/app/app.component.ts:

    ```typescript
    import { Component } from '@angular/core';
    import { faCoffee } from '@fortawesome/free-solid-svg-icons';
    
    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html'
    })
    export class AppComponent {
      faCoffee = faCoffee;
    }
    ```
  3. Use the icon in the template src/app/app.component.html:

    ```html
    <fa-icon [icon]="faCoffee"></fa-icon>
    ```

Documentation

Examples

Stackblitz

Here's a StackBlitz Starter Sample on how to display Solid, Regular, and Brand icons using the Icon Library.

Demo application

You can find examples in the projects/demo directory. You can follow the docs to run the demo app on your own machine.

Contributing

angular-fontawesome is a product of the community, you can take a look at the developer docs to find about more on how to contribute back to the project.

Contributors

The following contributors have either helped to start this project, have contributed code, are actively maintaining it (including documentation), or in other ways being awesome contributors to this project. We'd like to take a moment to recognize them.

If we've missed someone (which is quite likely) submit a Pull Request to us and we'll get it resolved.

1.0.0

1 year ago

0.1.0

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago