import { NgModule } from '@angular/core'; import { IgxAvatarComponent } from './avatar.component'; /** * @hidden * IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components */ @NgModule({ imports: [IgxAvatarComponent], exports: [IgxAvatarComponent] }) export class IgxAvatarModule { }