24 lines
478 B
TypeScript
24 lines
478 B
TypeScript
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() iconOnly;
|
|
@Input() disabled;
|
|
@Input() type = 'button';
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|