@kenc-ui/angular
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

Installing Clarity Angular

  1. Install Clarity Icons package through npm:

    npm install @clr/icons
    
  2. Install Clarity UI package through npm:

    npm install @clr/ui
    
  3. Install the clarity-angular package through npm:

    npm install @clr/angular
    
  4. 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 '@clr/angular';
    import { AppComponent } from './app.component';
    
    @NgModule({
        imports: [
            BrowserModule,
            ClarityModule,
            ....
         ],
         declarations: [ AppComponent ],
         bootstrap: [ AppComponent ]
    })
    export class AppModule {    }
    

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @kenc-ui/angular

    Weekly Downloads

    0

    Version

    0.0.1

    License

    MIT

    Unpacked Size

    15 MB

    Total Files

    1292

    Last publish

    Collaborators

    • mighoocool