mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-13 13:49:37 +01:00
10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { BitIconComponent } from "./icon.component";
|
|
|
|
@NgModule({
|
|
imports: [BitIconComponent],
|
|
exports: [BitIconComponent],
|
|
})
|
|
export class IconModule {}
|