1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00
Files
browser/libs/tools/generator/components/src/empty-credential-history.component.ts
Oscar Hinton 95856bf3cf [CL-714] Remove standalone true from tools (#15039)
Remove standalone: true from every instance since it's the default as of Angular 19.
2025-06-03 09:55:58 +02:00

18 lines
528 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({
selector: "bit-empty-credential-history",
templateUrl: "empty-credential-history.component.html",
imports: [JslibModule, IconModule, TypographyModule],
})
export class EmptyCredentialHistoryComponent {
noCredentialsIcon = NoCredentialsIcon;
constructor() {}
}