]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/cd-label/cd-label.component.ts
ae0471bf6f7938edd75b0b91b7844b8e4220beb2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / cd-label / cd-label.component.ts
1 import { Component, Input } from '@angular/core';
2
3 @Component({
4 selector: 'cd-label',
5 templateUrl: './cd-label.component.html',
6 styleUrls: ['./cd-label.component.scss']
7 })
8 export class CdLabelComponent {
9 @Input() key?: string;
10 @Input() value?: string;
11 }