]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / rgw / rgw-sync-data-info / rgw-sync-data-info.component.ts
CommitLineData
aee94f69
TL
1import { Component, Input } from '@angular/core';
2import { Icons } from '~/app/shared/enum/icons.enum';
3
4@Component({
5 selector: 'cd-rgw-sync-data-info',
6 templateUrl: './rgw-sync-data-info.component.html',
7 styleUrls: ['./rgw-sync-data-info.component.scss']
8})
9export class RgwSyncDataInfoComponent {
10 icons = Icons;
11
12 @Input()
13 zone: any = {};
14
15 constructor() {}
16}