pm-controls
Version:
ProModel Controls
34 lines (31 loc) • 794 B
text/typescript
import {
Component,
EventEmitter,
HostBinding,
TemplateRef,
Input,
Output
} from '@angular/core';
import { Icon } from '../../../objects/icon/icon';
,
styles: [`
:host {
display: flex;
align-items: center;
}
`],
})
export class IconAddressCardComponent extends Icon {
OriginalHeight = 14;
OriginalWidth = 16;
get Height(): number {
return this.OriginalHeight * this.IconSize;
}
get Width(): number {
return this.OriginalWidth * this.IconSize;
}
}