From a1c5e0cbcb45d1507e4c8e989fd190c9234122e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Juli=C3=A1n=20L=C3=B3pez=20Ca=C3=B1a?= Date: Mon, 17 Jun 2019 08:38:19 +0200 Subject: [PATCH] fix(docs): wrong NbEvaIconsModule import (#1623) --- CHANGELOG.md | 2 +- docs/articles/migration/350-400.md | 2 +- src/framework/theme/components/icon/icon.component.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24512330de..af725d3a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -219,7 +219,7 @@ There are two ways to upgrade: 1) install Eva Icons Nebular package `npm i @nebular/eva-icons` 2) register `NbEvaIconsModule` in the `app.module.ts` ``` -import { NbEvaIconsModule } form '@nebular/eva-icons'; +import { NbEvaIconsModule } from '@nebular/eva-icons'; @NgModule({ imports: [ diff --git a/docs/articles/migration/350-400.md b/docs/articles/migration/350-400.md index 280a25353e..29afe18ac1 100644 --- a/docs/articles/migration/350-400.md +++ b/docs/articles/migration/350-400.md @@ -240,7 +240,7 @@ npm i @nebular/eva-icons 2) register `NbEvaIconsModule` in the `app.module.ts` ```ts -import { NbEvaIconsModule } form '@nebular/eva-icons'; +import { NbEvaIconsModule } from '@nebular/eva-icons'; @NgModule({ imports: [ diff --git a/src/framework/theme/components/icon/icon.component.ts b/src/framework/theme/components/icon/icon.component.ts index a8ae0c5b64..57ddd9f9d1 100644 --- a/src/framework/theme/components/icon/icon.component.ts +++ b/src/framework/theme/components/icon/icon.component.ts @@ -43,7 +43,7 @@ import { NbIconLibraries } from './icon-libraries'; * This command will install Nebular Eva Icons pack. Then register `NbEvaIconsModule` into your app module or any child * module you need to have the icons in: * ```ts - * import { NbEvaIconsModule } form '@nebular/eva-icons'; + * import { NbEvaIconsModule } from '@nebular/eva-icons'; * * @NgModule({ * imports: [