mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
[PM-8277] - Password generator history component (#10921)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { Component } from "@angular/core";
|
||||
|
||||
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
||||
import { IconModule, TypographyModule } from "@bitwarden/components";
|
||||
|
||||
import { NoCredentialsIcon } from "./icons/no-credentials.icon";
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
selector: "bit-empty-credential-history",
|
||||
templateUrl: "empty-credential-history.component.html",
|
||||
imports: [JslibModule, IconModule, TypographyModule],
|
||||
})
|
||||
export class EmptyCredentialHistoryComponent {
|
||||
noCredentialsIcon = NoCredentialsIcon;
|
||||
|
||||
constructor() {}
|
||||
}
|
||||
Reference in New Issue
Block a user