Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amellnik/clr-angular
Temp publish of clr-angular
https://github.com/amellnik/clr-angular
Last synced: 1 day ago
JSON representation
Temp publish of clr-angular
- Host: GitHub
- URL: https://github.com/amellnik/clr-angular
- Owner: amellnik
- Created: 2019-04-25T15:15:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-22T02:26:43.000Z (over 5 years ago)
- Last Synced: 2024-10-19T17:42:44.147Z (3 months ago)
- Language: JavaScript
- Size: 5.3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 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 { }
```