mirror of
https://github.com/bitwarden/browser
synced 2026-02-07 04:03:29 +00:00
* create libs/assets * treeshake lib and filter out non-icons from icon story * update docs * fix icon colors in browser and desktop * better name for vault icon * move illustrations
17 lines
521 B
TypeScript
17 lines
521 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import { NoCredentialsIcon } from "@bitwarden/assets/svg";
|
|
import { IconModule, TypographyModule } from "@bitwarden/components";
|
|
|
|
@Component({
|
|
selector: "bit-empty-credential-history",
|
|
templateUrl: "empty-credential-history.component.html",
|
|
imports: [JslibModule, IconModule, TypographyModule],
|
|
})
|
|
export class EmptyCredentialHistoryComponent {
|
|
noCredentialsIcon = NoCredentialsIcon;
|
|
|
|
constructor() {}
|
|
}
|