/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { Component } from '@angular/core'; @Component({ selector: 'nb-user-test', styles: [ ` .test-row { margin: 20px; } `, ], template: `
`, }) export class NbUserTestComponent { contextMenu = [ { title: 'Profile', link: 'some/link', icon: 'nb-person' }, { title: 'Billing', target: '_blank', url: 'http://akveo.com' }, { title: 'Exit', key: 'exit' }, ]; onMenuItemClick(event) { console.info(event); } }