UNPKG

@nebular/theme

Version:
32 lines 1.06 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 { CommonModule } from '@angular/common'; import { NbIconModule } from '../icon/icon.module'; import { NbTagComponent } from './tag.component'; import { NbTagListComponent } from './tag-list.component'; import { NbTagInputDirective } from './tag-input.directive'; export class NbTagModule { } NbTagModule.decorators = [ { type: NgModule, args: [{ imports: [ CommonModule, NbIconModule, ], declarations: [ NbTagComponent, NbTagListComponent, NbTagInputDirective, ], exports: [ NbTagComponent, NbTagListComponent, NbTagInputDirective, ], },] } ]; //# sourceMappingURL=tag.module.js.map