summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/automated-upgrade/automated-upgrade-ui-components/upgrade-line-item/upgrade-line-item.component.ts
blob: b256d7efe81b0dfdd73ae9ba828e30f540f9fa20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import {Component, Input} from "@angular/core";

@Component({
    selector: 'upgrade-line-item',
    templateUrl: './upgrade-line-item.component.html',
    styleUrls: ['./upgrade-line-item.component.less']
})

export class UpgradeLineItemComponent {

    @Input() arrowName:string;
    @Input() icon:string;
    @Input() prefix:string;
    @Input() text:string;
    
    constructor() {

    }
}