23 lines
455 B
TypeScript
23 lines
455 B
TypeScript
![]() |
import {Component, Input, OnInit} from '@angular/core';
|
||
|
|
||
|
// TODO: apply everywhere
|
||
|
|
||
|
@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;
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|