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.component.ts
16 lines
(11 loc)
•
283 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@Component
({
selector
:
'lib-dav-icon-bar'
,
templateUrl
:
'./icon-bar.component.html'
,
styleUrls
: [
'./icon-bar.component.scss'
] })
export
class
IconBarComponent
implements
OnInit
{
constructor
(
) { }
ngOnInit
(
) { } }