Skip to content

Commit

Permalink
176 create avatar module (#333)
Browse files Browse the repository at this point in the history
* refactor: add avatar module(#176)

* fix: fixing wrong declaration(#176)

* fix: fixing wrong import(#176)

* Update projects/ion/src/lib/avatar/avatar.module.ts

Co-authored-by: Danilo Alves <[email protected]>

Co-authored-by: Edson Nunes <[email protected]>
Co-authored-by: Iury Nogueira <[email protected]>
Co-authored-by: Danilo Alves <[email protected]>
  • Loading branch information
4 people authored Dec 14, 2022
1 parent 3ecdf8f commit 0200020
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions projects/ion/src/lib/avatar/avatar.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { AvatarComponent } from './avatar.component';
import { IonIconComponent } from '../icon/icon.component';
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { DefaultImageDirective } from '../defaultImage.directive';

@NgModule({
declarations: [AvatarComponent, IonIconComponent, DefaultImageDirective],
imports: [CommonModule],
exports: [AvatarComponent, IonIconComponent],
})
export class AvatarModule {}

0 comments on commit 0200020

Please sign in to comment.