mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
13 lines
580 B
TypeScript
13 lines
580 B
TypeScript
import { Component } from '@angular/core';
|
|
import { NbComponentShape, NbComponentSize, NbComponentStatus } from '@nebular/theme';
|
|
|
|
@Component({
|
|
selector: 'ngx-buttons',
|
|
styleUrls: ['./buttons.component.scss'],
|
|
templateUrl: './buttons.component.html',
|
|
})
|
|
export class ButtonsComponent {
|
|
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' ];
|
|
}
|