import {Component, Input, OnInit} from '@angular/core'; import {properties} from '../../../environments/environment'; declare var UIkit; @Component({ selector: 'background', template: ` ` }) export class BackgroundComponent implements OnInit { @Input() label:string = ""; @Input() background; @Input() oldBackground; @Input() light:boolean; @Input() communityId:string = ""; public file: File; properties; constructor() { } ngOnInit() { this.properties = properties; } }