23 lines
603 B
TypeScript
23 lines
603 B
TypeScript
import {Component} from '@angular/core';
|
|
import {IonicModule} from "@ionic/angular";
|
|
import {addIcons} from 'ionicons';
|
|
import {homeOutline, peopleOutline, chatbubblesOutline, statsChartOutline} from 'ionicons/icons';
|
|
|
|
addIcons({
|
|
'home-outline': homeOutline,
|
|
'people-outline': peopleOutline,
|
|
'chatbubbles-outline': chatbubblesOutline,
|
|
'stats-chart-outline': statsChartOutline
|
|
});
|
|
|
|
@Component({
|
|
selector: 'app-navbar',
|
|
templateUrl: './navbar.component.html',
|
|
styleUrls: ['./navbar.component.scss'],
|
|
imports: [
|
|
IonicModule
|
|
]
|
|
})
|
|
export class NavbarComponent {
|
|
}
|