refactor(components): add icon module and missing imports

This commit is contained in:
Brandy Carney
2017-03-16 11:30:22 -04:00
parent 06b388bb68
commit f7bcc4603c
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { NgModule, ModuleWithProviders } from '@angular/core';
import { Icon } from './icon';
@NgModule({
declarations: [
Icon
],
exports: [
Icon
]
})
export class IconModule {
public static forRoot(): ModuleWithProviders {
return {
ngModule: IconModule, providers: []
};
}
}