pm-controls
Version:
ProModel Controls
33 lines (30 loc) • 726 B
text/typescript
import {
Component,
EventEmitter,
HostBinding,
TemplateRef,
Input,
Output
} from '@angular/core';
import { Icon } from '../../../objects/icon/icon';
export class IconCloudComponent extends Icon {
OriginalHeight = 14;
OriginalWidth = 15;
get Height(): number {
return this.OriginalHeight * this.IconSize;
}
get Width(): number {
return this.OriginalWidth * this.IconSize;
}
}