Skip to content

Commit 2d6b376

Browse files
authored
fix(icon-button): add directive into button module (#13965)
1 parent 564d4c7 commit 2d6b376

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { NgModule } from '@angular/core';
22
import { IgxButtonDirective } from './button.directive';
3+
import { IgxIconButtonDirective } from './icon-button.directive';
34

45
/**
56
* @hidden
67
* IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components
78
*/
89
@NgModule({
9-
imports: [IgxButtonDirective],
10-
exports: [IgxButtonDirective]
10+
imports: [IgxButtonDirective, IgxIconButtonDirective],
11+
exports: [IgxButtonDirective, IgxIconButtonDirective]
1112
})
1213
export class IgxButtonModule {}

0 commit comments

Comments
 (0)