2021-04-15 10:01:27 +02:00
|
|
|
|
|
|
|
import { NgModule } from '@angular/core'
|
|
|
|
import { SharedGlobalIconModule } from '../shared-icons'
|
|
|
|
import { SharedMainModule } from '../shared-main/shared-main.module'
|
2021-04-28 11:49:34 +02:00
|
|
|
import { ActorAvatarComponent } from './actor-avatar.component'
|
2021-04-15 10:01:27 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
SharedMainModule,
|
|
|
|
SharedGlobalIconModule
|
|
|
|
],
|
|
|
|
|
|
|
|
declarations: [
|
2021-04-28 11:49:34 +02:00
|
|
|
ActorAvatarComponent
|
2021-04-15 10:01:27 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
exports: [
|
2021-04-28 11:49:34 +02:00
|
|
|
ActorAvatarComponent
|
2021-04-15 10:01:27 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
providers: [ ]
|
|
|
|
})
|
2021-04-28 11:49:34 +02:00
|
|
|
export class SharedActorImageModule { }
|