UNPKG

pm-controls

Version:
32 lines (29 loc) 693 B
import { Component, EventEmitter, TemplateRef, Input, Output } from '@angular/core'; import { Icon } from '../../../objects/icon/icon'; @Component({ selector: 'pm-icon-th', //templateUrl: './app/controls/components/svg/icon-th/icon-th.html' templateUrl: './icon-th.html', styles: [` :host { display: flex; align-items: center; } `], }) export class IconThComponent extends Icon { OriginalHeight = 14; OriginalWidth = 14; get Height(): number { return this.OriginalHeight * this.IconSize; } get Width(): number { return this.OriginalWidth * this.IconSize; } }