aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tabs/children/tab.component.ts
blob: 3b96e8795bab9af476eef672e5fbd675c97c802e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Component, Input } from '@angular/core';
import { Mode } from './../../common/enums';
import template from "./tab.component.html";

@Component({
  selector: 'sdc-tab',
  template: template
})
export class TabComponent {
  @Input() public title: string;
  @Input() public titleIcon: string;
  @Input() public active = false;

  public titleIconMode = Mode.secondary;

}