import { Component, OnInit, Input, ElementRef } from '@angular/core'; @Component({ selector: 'cursor', template:` ` }) export class CursorComponent implements OnInit { @Input() size = 14 public moveSize constructor(public _elementRef:ElementRef) { } ngOnInit () { this.moveSize = this.size/1.8; } }