Skip to content

Commit d9a7dfa

Browse files
committed
fix(lib): enhanced the import statement of the lib module
1 parent 5b7188d commit d9a7dfa

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

projects/angular-material-extensions/select-icon/src/lib/mat-select-icon.module.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
import { CommonModule } from '@angular/common';
12
import { NgModule } from '@angular/core';
3+
import { FlexLayoutModule } from '@angular/flex-layout';
4+
import { MatButtonModule } from '@angular/material/button';
25
import { MatSelectIconComponent } from './mat-select-icon/mat-select-icon.component';
36

47

58
@NgModule({
69
declarations: [MatSelectIconComponent],
7-
imports: [],
10+
imports: [
11+
CommonModule,
12+
MatButtonModule,
13+
FlexLayoutModule
14+
],
815
exports: [MatSelectIconComponent]
916
})
1017
export class MatSelectIconModule {

0 commit comments

Comments
 (0)