aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/buttons/buttons.module.ts
blob: c8047587e952995ec3f8423490e22c79baf09f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { NgModule } from "@angular/core";
import { ButtonComponent } from "./button.component";
import { CommonModule } from "@angular/common";
import { SvgIconModule } from './../svg-icon/svg-icon.module';

@NgModule({
    declarations: [
        ButtonComponent
    ],
    imports: [
        CommonModule,
        SvgIconModule
    ],
    exports: [
        ButtonComponent

    ],
})
export class ButtonsModule {

}