Archive commit

This commit is contained in:
Erik McClure
2019-08-28 21:15:02 -07:00
commit 735845746e
1435 changed files with 140724 additions and 0 deletions
@@ -0,0 +1,13 @@
import { Component, Input } from '@angular/core';
import { emptyIcon } from '../../../client/icons';
@Component({
selector: 'menu-item',
templateUrl: 'menu-item.pug',
styleUrls: ['menu-item.scss'],
})
export class MenuItem {
@Input() route: any;
@Input() name?: string;
@Input() icon = emptyIcon;
}