mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
34 lines
926 B
TypeScript
34 lines
926 B
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import { CommonModule } from "@angular/common";
|
|
import { Component, Input } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import { SshKeyView } from "@bitwarden/common/vault/models/view/ssh-key.view";
|
|
import {
|
|
SectionHeaderComponent,
|
|
TypographyModule,
|
|
FormFieldModule,
|
|
IconButtonModule,
|
|
} from "@bitwarden/components";
|
|
|
|
import { ReadOnlyCipherCardComponent } from "../read-only-cipher-card/read-only-cipher-card.component";
|
|
|
|
@Component({
|
|
selector: "app-sshkey-view",
|
|
templateUrl: "sshkey-view.component.html",
|
|
standalone: true,
|
|
imports: [
|
|
CommonModule,
|
|
JslibModule,
|
|
SectionHeaderComponent,
|
|
ReadOnlyCipherCardComponent,
|
|
TypographyModule,
|
|
FormFieldModule,
|
|
IconButtonModule,
|
|
],
|
|
})
|
|
export class SshKeyViewComponent {
|
|
@Input() sshKey: SshKeyView;
|
|
}
|