zr-button
v3.0.1
Published
A button component based on the'METRONIC'topic.
Downloads
6
Readme
About
A button component based on the'METRONIC'topic.
Installation
Install through npm:
npm install --save zr-button
Then include in your apps module:
import { NgModule } from '@angular/core';
import { ZrButtonModule } from 'zr-button';
@NgModule({
imports: [
ZrButtonModule.forRoot()
]
})
export class MyModule {}
Finally use in one of your apps components:
import { Component } from '@angular/core';
@Component({
template: '<zr-button (handle)="click1($event)"></zr-button>'
})
export class MyComponent {}