22 lines
410 B
TypeScript
22 lines
410 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
import { MD2Icon } from '../massive-darkness2.model';
|
|
|
|
@Component({
|
|
selector: 'md2-icon',
|
|
templateUrl: './md2-icon.component.html',
|
|
styleUrls: ['./md2-icon.component.scss']
|
|
})
|
|
export class MD2IconComponent implements OnInit {
|
|
|
|
@Input() iconClass: string = '';
|
|
|
|
@Input("icon") icon: MD2Icon;
|
|
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|