u-clarity-angular
v0.10.0-alpha.25
Published
1. Install Clarity Icons package through npm: ``` npm install clarity-icons ```
Downloads
15
Readme
Installing Clarity Angular
Install Clarity Icons package through npm:
npm install clarity-icons
Install Clarity UI package through npm:
npm install clarity-ui
Install the clarity-angular package through npm:
npm install clarity-angular
Import the ClarityModule into your Angular application's module. Your application's main module might look like this:
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { ClarityModule } from 'clarity-angular'; import { AppComponent } from './app.component'; @NgModule({ imports: [ BrowserModule, ClarityModule.forRoot(), .... ], declarations: [ AppComponent ], bootstrap: [ AppComponent ] }) export class AppModule { }