pdnsmanager/frontend/src/app/partials/fa-icon/fa-icon.component.ts
2017-07-23 16:24:52 +02:00

17 lines
349 B
TypeScript

import {Component, Input} from '@angular/core';
@Component({
selector: 'app-fa-icon',
templateUrl: './fa-icon.component.html',
styleUrls: ['./fa-icon.component.scss']
})
export class FaIconComponent {
@Input() icon: string;
@Input() size = 0;
@Input() fixedWidth = false;
@Input() animate = '';
constructor() {}
}