definma-ui/src/app/rb-custom-inputs/rb-icon-button/rb-icon-button.component.ts

23 lines
457 B
TypeScript
Raw Normal View History

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;
@Input() disabled;
2020-07-29 13:14:29 +02:00
@Input() type = 'button';
2020-07-27 17:52:03 +02:00
constructor() { }
ngOnInit(): void {
}
}