mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
17 lines
491 B
TypeScript
17 lines
491 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import { NoCredentialsIcon } from "@bitwarden/assets/svg";
|
|
import { NoItemsModule } from "@bitwarden/components";
|
|
|
|
@Component({
|
|
selector: "bit-empty-credential-history",
|
|
templateUrl: "empty-credential-history.component.html",
|
|
imports: [JslibModule, NoItemsModule],
|
|
})
|
|
export class EmptyCredentialHistoryComponent {
|
|
noCredentialsIcon = NoCredentialsIcon;
|
|
|
|
constructor() {}
|
|
}
|