UNPKG

@nebular/theme

Version:
32 lines 1.02 kB
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { NgModule } from '@angular/core'; import { NbSharedModule } from '../shared/shared.module'; import { NbActionComponent, NbActionsComponent } from './actions.component'; import { NbBadgeModule } from '../badge/badge.module'; import { NbIconModule } from '../icon/icon.module'; const NB_ACTIONS_COMPONENTS = [ NbActionComponent, NbActionsComponent, ]; export class NbActionsModule { } NbActionsModule.decorators = [ { type: NgModule, args: [{ imports: [ NbSharedModule, NbBadgeModule, NbIconModule, ], declarations: [ ...NB_ACTIONS_COMPONENTS, ], exports: [ ...NB_ACTIONS_COMPONENTS, ], },] } ]; //# sourceMappingURL=actions.module.js.map