@@ -34,7 +34,7 @@ The next step is to import the `IgxBadgeModule` in your **app.module.ts** file.
3434// app.module.ts
3535
3636...
37- import { IgxBadgeModule } from ' igniteui-angular' ;
37+ import { IgxBadgeModule } from ' igniteui-angular/badge ' ;
3838// import { IgxBadgeModule } from '@infragistics/igniteui-angular'; for licensed package
3939
4040@NgModule ({
@@ -51,7 +51,7 @@ Alternatively, as of `16.0.0` you can import the `IgxBadgeComponent` as a standa
5151// home.component.ts
5252
5353...
54- import { IgxBadgeComponent } from ' igniteui-angular' ;
54+ import { IgxBadgeComponent } from ' igniteui-angular/badge ' ;
5555// import { IgxBadgeComponent } from '@infragistics/igniteui-angular'; for licensed package
5656
5757@Component ({
@@ -73,7 +73,8 @@ Let's see how the demo sample is done. It's a simple success badge on an avatar.
7373``` typescript
7474// app.module.ts
7575...
76- import { IgxBadgeModule , IgxAvatarModule } from ' igniteui-angular' ;
76+ import { IgxBadgeModule } from ' igniteui-angular/badge' ;
77+ import { IgxAvatarModule } from ' igniteui-angular/avatar' ;
7778// import { IgxBadgeModule, IgxAvatarModule } from '@infragistics/igniteui-angular'; for licensed package
7879
7980@NgModule ({
@@ -171,11 +172,9 @@ To continue, include all needed modules and import them in the **app.module.ts**
171172// app.module.ts
172173
173174...
174- import {
175- IgxListModule ,
176- IgxAvatarModule ,
177- IgxBadgeModule
178- } from ' igniteui-angular' ;
175+ import { IgxListModule } from ' igniteui-angular/list' ;
176+ import { IgxAvatarModule } from ' igniteui-angular/avatar' ;
177+ import { IgxBadgeModule } from ' igniteui-angular/badge' ;
179178// import { IgxListModule, IgxAvatarModule, IgxBadgeModule } from '@infragistics/igniteui-angular'; for licensed package
180179
181180@NgModule ({
0 commit comments