13 lines
362 B
TypeScript
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;
|
|
}
|