mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00: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 {}
|