Files
mina-sidor-fa-web/apps/dafa-web/src/app/components/sidebar/sidebar.component.ts
2021-03-17 10:58:55 +01:00

13 lines
362 B
TypeScript

import { ChangeDetectionStrategy, Component } from '@angular/core';
import { IconType } from '@dafa-enums/icon-type.enum';
@Component({
selector: 'dafa-sidebar',
templateUrl: './sidebar.component.html',
styleUrls: ['./sidebar.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SidebarComponent {
iconType = IconType;
}