17 lines
318 B
TypeScript
17 lines
318 B
TypeScript
import {Component, Input} from "@angular/core";
|
|
|
|
@Component({
|
|
selector: 'slider-tab',
|
|
template: ``
|
|
})
|
|
export class SliderTabComponent {
|
|
@Input("tabTitle")
|
|
public title: string;
|
|
@Input("tabId")
|
|
public id: string;
|
|
@Input()
|
|
public active: boolean = false;
|
|
@Input()
|
|
public disabled: boolean = false;
|
|
}
|