aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/svg-icon/svg-icon.module.ts
blob: 87a0d86e1192db8c7e356351641b3608f744ae05 (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 { CommonModule } from "@angular/common";
import { SvgIconComponent } from "./svg-icon.component";
import { SvgIconLabelComponent } from "./svg-icon-label.component";

@NgModule({
    declarations: [
        SvgIconComponent,
        SvgIconLabelComponent
    ],
    imports: [
        CommonModule
    ],
    exports: [
        SvgIconComponent,
        SvgIconLabelComponent
    ],
})

export class SvgIconModule {
}