re base code
[sdc.git] / catalog-ui / src / app / ng2 / pages / automated-upgrade / automated-upgrade-ui-components / upgrade-line-item / upgrade-line-item.component.ts
1 import {Component, Input} from "@angular/core";
2
3 @Component({
4     selector: 'upgrade-line-item',
5     templateUrl: './upgrade-line-item.component.html',
6     styleUrls: ['./upgrade-line-item.component.less']
7 })
8
9 export class UpgradeLineItemComponent {
10
11     @Input() arrowName:string;
12     @Input() icon:string;
13     @Input() prefix:string;
14     @Input() text:string;
15     
16     constructor() {
17
18     }
19 }