UNPKG
ngx-fizz
Version:
latest (0.1.0-alpha)
0.1.0-alpha
Rich Animated icon set for AngularIO operated by animeJS engine
fizz.ohjun.me
dhguswns23/fizz
ngx-fizz
/
src
/
icons
/
fiz-out
/
fiz-out.module.ts
17 lines
(15 loc)
•
333 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ CommonModule }
from
'@angular/common'
;
import
{ NgModule }
from
'@angular/core'
;
import
{ FizOutComponent }
from
'./fiz-out.component'
;
@NgModule(
{ declarations: [ FizOutComponent, ], imports: [ CommonModule, ], exports: [ FizOutComponent, ], }
)
export
class
FizOutModule
{}