]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/info-panel/info-panel.component.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / info-panel / info-panel.component.ts
1 import { Component, Input } from '@angular/core';
2
3 import { I18n } from '@ngx-translate/i18n-polyfill';
4
5 @Component({
6 selector: 'cd-info-panel',
7 templateUrl: './info-panel.component.html',
8 styleUrls: ['./info-panel.component.scss']
9 })
10 export class InfoPanelComponent {
11 /**
12 * The title to be displayed. Defaults to 'Information'.
13 * @type {string}
14 */
15 @Input()
16 title = this.i18n('Information');
17
18 constructor(private i18n: I18n) {}
19 }