mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
14 lines
242 B
TypeScript
14 lines
242 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'ngx-sized-buttons',
|
||
|
|
templateUrl: './sized.component.html',
|
||
|
|
})
|
||
|
|
export class NgxSizedButtonsComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() { }
|
||
|
|
|
||
|
|
}
|