UNPKG
@davinchi-project/icon-bar
Version:
latest (0.0.1)
0.0.1
Iconbar inspired by how to section in w3school
@davinchi-project/icon-bar
/
src
/
lib
/
icon-bar.module.ts
11 lines
(9 loc)
•
230 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { NgModule } from
'@angular/core'
; import { IconBarComponent } from
'./icon-bar.component'
;
@NgModule
({ declarations: [IconBarComponent], imports: [ ], exports: [IconBarComponent] }) export
class
IconBarModule
{ }