2020-07-27 17:52:03 +02:00
|
|
|
import {Component, Input, OnInit} from '@angular/core';
|
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
// tslint:disable-next-line:component-selector
|
|
|
|
selector: 'rb-icon-button',
|
|
|
|
templateUrl: './rb-icon-button.component.html',
|
|
|
|
styleUrls: ['./rb-icon-button.component.scss']
|
|
|
|
})
|
|
|
|
export class RbIconButtonComponent implements OnInit {
|
|
|
|
|
|
|
|
@Input() icon: string;
|
|
|
|
@Input() mode: string;
|
2020-08-06 08:18:57 +02:00
|
|
|
@Input() iconOnly;
|
2020-07-27 17:52:03 +02:00
|
|
|
@Input() disabled;
|
2020-07-29 13:14:29 +02:00
|
|
|
@Input() type = 'button';
|
2020-07-27 17:52:03 +02:00
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|