import { Component, EventEmitter, Input, Output } from '@angular/core'
import { UiButton } from '../../models'
@Component({
selector: 'ui-buttons',
template: `
`,
})
export class ButtonsComponent {
@Input() public config: UiButton[] = []
@Input() public disabled = false
@Input() public payload: any
@Output() public action = new EventEmitter()
}