UNPKG

@nebular/theme

Version:
39 lines 1.35 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 { NbIconModule } from '../icon/icon.module'; import { NbCardComponent, NbCardBodyComponent, NbCardFooterComponent, NbCardHeaderComponent, } from './card.component'; import { NbRevealCardComponent } from './reveal-card/reveal-card.component'; import { NbFlipCardComponent } from './flip-card/flip-card.component'; import { NbCardFrontComponent, NbCardBackComponent } from './shared/shared.component'; const NB_CARD_COMPONENTS = [ NbCardComponent, NbCardBodyComponent, NbCardFooterComponent, NbCardHeaderComponent, NbRevealCardComponent, NbFlipCardComponent, NbCardFrontComponent, NbCardBackComponent, ]; export class NbCardModule { } NbCardModule.decorators = [ { type: NgModule, args: [{ imports: [ NbSharedModule, NbIconModule, ], declarations: [ ...NB_CARD_COMPONENTS, ], exports: [ ...NB_CARD_COMPONENTS, ], },] } ]; //# sourceMappingURL=card.module.js.map