mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { BitIconButtonComponent } from "./icon-button.component";
|
|
|
|
@NgModule({
|
|
imports: [BitIconButtonComponent],
|
|
exports: [BitIconButtonComponent],
|
|
})
|
|
export class IconButtonModule {}
|