graycoreio/daffodil

View on GitHub
libs/theme-switch/src/lib/theme-switch-button/theme-switch-button.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';

import { DaffButtonModule } from '@daffodil/design/button';

import { DaffThemeSwitchButtonComponent } from './theme-switch-button.component';

@NgModule({
  declarations: [
    DaffThemeSwitchButtonComponent,
  ],
  imports: [
    CommonModule,
    FontAwesomeModule,
    DaffButtonModule,
  ],
  exports: [
    DaffThemeSwitchButtonComponent,
  ],
})
export class DaffThemeSwitchButtonModule { }