UNPKG

pm-controls

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