Socket
Socket
Sign inDemoInstall

angular2-font-awesome

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular2-font-awesome

Simple, easy to use Angular 2 component to manage Font Awesome icons.


Version published
Weekly downloads
18
increased by350%
Maintainers
1
Weekly downloads
 
Created
Source

ng2-font-awesome

Simple, easy to use Angular 2 component to manage Font Awesome icons.

How to install

Install Packages npm install --save font-awesome ng2-font-awesome

Import the module:

//...
import { FontAwesomeModule } from 'ng2-font-awesome/ng2-font-awesome';
@NgModule({
  //...
  imports: [
    //...
    FontAwesomeModule
  ],
  //...
})
export class AppModule { }

If you're using Angular CLI, add the font-awesome CSS to styles inside the angular-cli.json

"styles": [
    "styles.css",
    "../node_modules/font-awesome/css/font-awesome.css"
],

NOTE: If using SCSS preprocessor just change the css for scss

If you're not using the CLI, import the stylesheet to your index.html file

<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />

Usage and Options

To use the component you can choose between these 2 selectors: <ng2-fa></ng2-fa> or <fa></fa>.

NameTypeOptionsRequired
nameStringF-A IconsYes
sizeStringlg, 2x, 3x, 4x, 5x
fixedBoolean`truefalse`
animationString`spinpulse`
rotate`NumberString``90

Example Use

<fa name="cog" animation="spin"></fa>

TODO

  • Create unit tests
  • Add directive option
  • Add Stacked Icons support
  • Add List Icons support

Keywords

FAQs

Package last updated on 06 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc