|
@@ -3,10 +3,21 @@ import { CommonModule } from '@angular/common';
|
|
import { SwitchComponent } from './switch/switch.component';
|
|
import { SwitchComponent } from './switch/switch.component';
|
|
import { UiButtonComponent } from './ui-button/ui-button.component';
|
|
import { UiButtonComponent } from './ui-button/ui-button.component';
|
|
import { FullSpellcardComponent } from './full-spellcard/full-spellcard.component';
|
|
import { FullSpellcardComponent } from './full-spellcard/full-spellcard.component';
|
|
|
|
+import { IconButtonComponent } from './icon-button/icon-button.component';
|
|
|
|
|
|
@NgModule({
|
|
@NgModule({
|
|
- declarations: [SwitchComponent, UiButtonComponent, FullSpellcardComponent],
|
|
|
|
|
|
+ declarations: [
|
|
|
|
+ SwitchComponent,
|
|
|
|
+ UiButtonComponent,
|
|
|
|
+ FullSpellcardComponent,
|
|
|
|
+ IconButtonComponent,
|
|
|
|
+ ],
|
|
imports: [CommonModule],
|
|
imports: [CommonModule],
|
|
- exports: [SwitchComponent, UiButtonComponent],
|
|
|
|
|
|
+ exports: [
|
|
|
|
+ SwitchComponent,
|
|
|
|
+ UiButtonComponent,
|
|
|
|
+ FullSpellcardComponent,
|
|
|
|
+ IconButtonComponent,
|
|
|
|
+ ],
|
|
})
|
|
})
|
|
export class SharedComponentsModule {}
|
|
export class SharedComponentsModule {}
|