2017-05-05 17:22:35 +03:00
|
|
|
import { Component } from '@angular/core';
|
2019-07-02 16:18:09 +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',
|
|
|
|
|
})
|
2017-05-06 14:52:41 +03:00
|
|
|
export class ButtonsComponent {
|
2019-07-02 16:18:09 +03:00
|
|
|
statuses: NbComponentStatus[] = [ 'primary', 'success', 'info', 'warning', 'danger' ];
|
|
|
|
|
shapes: NbComponentShape[] = [ 'rectangle', 'semi-round', 'round' ];
|
|
|
|
|
sizes: NbComponentSize[] = [ 'tiny', 'small', 'medium', 'large', 'giant' ];
|
2017-04-29 18:53:19 +03:00
|
|
|
}
|