mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 23:03:32 +00:00
19 lines
548 B
TypeScript
19 lines
548 B
TypeScript
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() {}
|
|
}
|