UNPKG
coreui-angular-ex
Version:
latest (4.5.14)
4.5.14
CoreUI Components Library for Angular
coreui.io/angular/
coreui/coreui-angular
coreui-angular-ex
/
projects
/
coreui-icons-angular
/
src
/
lib
/
icon
/
icon.module.ts
16 lines
(14 loc)
•
309 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{ NgModule }
from
'@angular/core'
;
import
{ IconComponent }
from
'./icon.component'
;
import
{ IconDirective }
from
'./icon.directive'
;
@NgModule(
{ imports: [ IconComponent, IconDirective ], exports: [ IconComponent, IconDirective ] }
)
export
class
IconModule
{}