We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 564d4c7 commit 2d6b376Copy full SHA for 2d6b376
projects/igniteui-angular/src/lib/directives/button/button.module.ts
@@ -1,12 +1,13 @@
1
import { NgModule } from '@angular/core';
2
import { IgxButtonDirective } from './button.directive';
3
+import { IgxIconButtonDirective } from './icon-button.directive';
4
5
/**
6
* @hidden
7
* IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components
8
*/
9
@NgModule({
- imports: [IgxButtonDirective],
10
- exports: [IgxButtonDirective]
+ imports: [IgxButtonDirective, IgxIconButtonDirective],
11
+ exports: [IgxButtonDirective, IgxIconButtonDirective]
12
})
13
export class IgxButtonModule {}
0 commit comments