UNPKG

pm-controls

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