2020-03-06 15:47:34 +03:00
|
|
|
import { Component } from '@angular/core';
|
2020-03-10 15:57:33 +03:00
|
|
|
import { NbComponentShape, NbComponentSize, NbComponentStatus } from '@nebular/theme';
|
2017-04-29 18:53:19 +03:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'ngx-buttons',
|
|
|
|
|
styleUrls: ['./buttons.component.scss'],
|
|
|
|
|
templateUrl: './buttons.component.html',
|
|
|
|
|
})
|
2020-03-06 15:47:34 +03:00
|
|
|
export class ButtonsComponent {
|
2020-03-06 14:21:17 +03:00
|
|
|
public readonly statuses: NbComponentStatus[] = [ 'primary', 'success', 'info', 'warning', 'danger' ];
|
|
|
|
|
public readonly shapes: NbComponentShape[] = [ 'rectangle', 'semi-round', 'round' ];
|
|
|
|
|
public readonly sizes: NbComponentSize[] = [ 'tiny', 'small', 'medium', 'large', 'giant' ];
|
2017-04-29 18:53:19 +03:00
|
|
|
}
|