We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b7188d commit d9a7dfaCopy full SHA for d9a7dfa
projects/angular-material-extensions/select-icon/src/lib/mat-select-icon.module.ts
@@ -1,10 +1,17 @@
1
+import { CommonModule } from '@angular/common';
2
import { NgModule } from '@angular/core';
3
+import { FlexLayoutModule } from '@angular/flex-layout';
4
+import { MatButtonModule } from '@angular/material/button';
5
import { MatSelectIconComponent } from './mat-select-icon/mat-select-icon.component';
6
7
8
@NgModule({
9
declarations: [MatSelectIconComponent],
- imports: [],
10
+ imports: [
11
+ CommonModule,
12
+ MatButtonModule,
13
+ FlexLayoutModule
14
+ ],
15
exports: [MatSelectIconComponent]
16
})
17
export class MatSelectIconModule {
0 commit comments