import { Component, OnInit, Input } from '@angular/core';
import { NgSwitch, NgSwitchCase } from '@angular/common';
@Component({
moduleId: module.id,
selector: 'icon',
template:
`
`,
directives: [NgSwitch, NgSwitchCase],
styles: [require('./icon.component.scss')]
})
export class IconComponent implements OnInit {
@Input() name: string;
constructor() { }
ngOnInit() { }
}